Skip to content
Snippets Groups Projects
Commit e33cdea2 authored by Demian Katz's avatar Demian Katz
Browse files

Bump version dependency check.

parent 7df30164
Branches
Tags
No related merge requests found
...@@ -225,8 +225,8 @@ class InstallController extends AbstractBase ...@@ -225,8 +225,8 @@ class InstallController extends AbstractBase
return false; return false;
} }
// We need at least PHP v5.3.3: // We need at least PHP v7.0.8:
return PHP_VERSION_ID >= 50303; return PHP_VERSION_ID >= 70008;
} }
/** /**
...@@ -259,7 +259,7 @@ class InstallController extends AbstractBase ...@@ -259,7 +259,7 @@ class InstallController extends AbstractBase
// Is our version new enough? // Is our version new enough?
if (!$this->phpVersionIsNewEnough()) { if (!$this->phpVersionIsNewEnough()) {
$msg = "VuFind requires PHP version 5.3.3 or newer; you are running " $msg = "VuFind requires PHP version 7.0.8 or newer; you are running "
. phpversion() . ". Please upgrade."; . phpversion() . ". Please upgrade.";
$this->flashMessenger()->addMessage($msg, 'error'); $this->flashMessenger()->addMessage($msg, 'error');
$problems++; $problems++;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment