Fix GRAV_PHP_MIN for CLI

This commit is contained in:
Flavio Copes
2017-02-16 10:37:35 +01:00
parent e2cc55a4e3
commit a3ccae5915

View File

@@ -12,6 +12,10 @@ define('GRAV_VERSION', '1.1.16');
define('GRAV_TESTING', false);
define('DS', '/');
if (!defined('GRAV_PHP_MIN')) {
define('GRAV_PHP_MIN', '5.5.9');
}
// Directories and Paths
if (!defined('GRAV_ROOT')) {
define('GRAV_ROOT', str_replace(DIRECTORY_SEPARATOR, DS, getcwd()));