From d7746a24616e26308c1e28ad65503d6de06437e3 Mon Sep 17 00:00:00 2001 From: Awilum Date: Wed, 21 Mar 2018 00:28:34 +0300 Subject: [PATCH] NEW BRAND NAME - FLEXTYPE --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index ab898e4d..e441a51f 100755 --- a/index.php +++ b/index.php @@ -11,10 +11,10 @@ */ // Define the application minimum supported PHP version. -define('RAWILUM_MINIMUM_PHP', '7.1.3'); +define('FLEXTYPE_MINIMUM_PHP', '7.1.3'); // Check PHP Version -version_compare($ver = PHP_VERSION, $req = RAWILUM_MINIMUM_PHP, '<') and exit(sprintf('You are running PHP %s, but Flextype needs at least PHP %s to run.', $ver, $req)); +version_compare($ver = PHP_VERSION, $req = FLEXTYPE_MINIMUM_PHP, '<') and exit(sprintf('You are running PHP %s, but Flextype needs at least PHP %s to run.', $ver, $req)); // Ensure vendor libraries exist and Register The Auto Loader !is_file($autoload = __DIR__ . '/vendor/autoload.php') and exit("Please run: composer install");