1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-12 16:14:16 +02:00

NEW BRAND NAME - FLEXTYPE

This commit is contained in:
Awilum
2018-03-21 00:28:34 +03:00
parent 10dfd751f6
commit d7746a2461

View File

@@ -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 <strong>PHP %s</strong> 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 <strong>PHP %s</strong> to run.', $ver, $req));
// Ensure vendor libraries exist and Register The Auto Loader
!is_file($autoload = __DIR__ . '/vendor/autoload.php') and exit("Please run: <i>composer install</i>");