Explorar el Código

Increase minimum php version to 7.1.3

causefx hace 7 años
padre
commit
af1e10fd6c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      api/functions/static-globals.php

+ 1 - 1
api/functions/static-globals.php

@@ -4,7 +4,7 @@
 $GLOBALS['installedVersion'] = '2.0.0-beta.990';
 // ===================================
 // Quick php Version check
-$GLOBALS['minimumPHP'] = '7.0.0';
+$GLOBALS['minimumPHP'] = '7.1.3';
 if (!(version_compare(PHP_VERSION, $GLOBALS['minimumPHP']) >= 0)) {
 	die('Organizr needs PHP Version: ' . $GLOBALS['minimumPHP'] . '<br/> You have PHP Version: ' . PHP_VERSION);
 }