3.4.0
This commit is contained in:
@@ -2,9 +2,12 @@
|
||||
|
||||
/**
|
||||
* Validate the PHP version to already
|
||||
* stop at older versions
|
||||
* stop at older or too recent versions
|
||||
*/
|
||||
if (version_compare(phpversion(), '7.1.0', '>=') === false) {
|
||||
if (
|
||||
version_compare(PHP_VERSION, '7.2.0', '>=') === false ||
|
||||
version_compare(PHP_VERSION, '7.5.0', '<') === false
|
||||
) {
|
||||
die(include __DIR__ . '/views/php.php');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user