12345678910111213141516171819202122232425262728 |
- #!/usr/bin/env php
- <?php
- // fcgi doesn't have STDIN and STDOUT defined by default
- defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
- defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
- // Include local configuration first so we can set the YII_* constants there
- $local = require(__DIR__.'/config/local.php');
- require(__DIR__ . '/vendor/autoload.php');
- require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
- // Build web configuration
- $web = require(__DIR__.'/config/web.php');
- $web = yii\helpers\ArrayHelper::merge($web, $local);
- $config = require(__DIR__.'/config/console.php');
- if(file_exists(__DIR__.'/config/console-local.php')) {
- $local = require(__DIR__.'/config/console-local.php');
- $config = yii\helpers\ArrayHelper::merge($config, $local);
- }
- $application = new yii\console\Application($config);
- $exitCode = $application->run();
- exit($exitCode);
|