You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
392 B
17 lines
392 B
<?php
|
|
|
|
// This file needs to parse without error in PHP < 5.3
|
|
|
|
if ( 'cli' !== PHP_SAPI ) {
|
|
echo "Only CLI access.\n";
|
|
die(-1);
|
|
}
|
|
|
|
if ( version_compare( PHP_VERSION, '5.3.0', '<' ) ) {
|
|
printf( "Error: ee-cli requires PHP %s or newer. You are running version %s.\n", '5.3.0', PHP_VERSION );
|
|
die(-1);
|
|
}
|
|
|
|
define( 'EE_CLI_ROOT', dirname( __DIR__ ) );
|
|
|
|
include EE_CLI_ROOT . '/php/ee-cli.php';
|
|
|