Files
Grav/bin/grav

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-08-02 12:11:33 -07:00
#!/usr/bin/env php
<?php
define('GRAV_CLI', true);
2014-08-02 12:11:33 -07:00
if (version_compare($ver = PHP_VERSION, $req = '5.4.0', '<')) {
exit(sprintf("You are running PHP %s, but Grav needs at least PHP %s to run.\n", $ver, $req));
}
if (!file_exists(__DIR__ . '/../vendor')){
// Before we can even start, we need to run composer first
echo "Preparing to install vendor dependencies...\n\n";
echo system('php bin/composer.phar --working-dir="'.__DIR__.'/../" --no-interaction install');
echo "\n\n";
}
use Symfony\Component\Console\Application;
2014-08-02 12:11:33 -07:00
2014-09-10 11:22:26 +03:00
require_once __DIR__ . '/../vendor/autoload.php';
2014-08-02 12:11:33 -07:00
if (!ini_get('date.timezone')) {
date_default_timezone_set('UTC');
}
2014-08-02 12:11:33 -07:00
if (!file_exists(ROOT_DIR . 'index.php')) {
exit('FATAL: Must be run from ROOT directory of Grav!');
}
$app = new Application('Grav CLI Application', '0.1.0');
$app->addCommands(array(
new Grav\Console\Cli\InstallCommand(),
2014-09-04 14:48:24 -07:00
new Grav\Console\Cli\SandboxCommand(),
new Grav\Console\Cli\CleanCommand(),
new Grav\Console\Cli\ClearCacheCommand(),
new Grav\Console\Cli\BackupCommand(),
new Grav\Console\Cli\NewProjectCommand(),
2014-08-02 12:11:33 -07:00
));
$app->run();