| 1234567891011121314151617181920212223 |
- <?php
- $config = [
- 'id' => 'basic-console',
- 'basePath' => dirname(__DIR__) . '/../',
- 'runtimePath' => dirname(__DIR__) . '/../../runtime',
- 'vendorPath' => dirname(__DIR__) . '/../../vendor',
- 'bootstrap' => ['log'],
- 'controllerNamespace' => 'app\commands',
- 'components' => require(__DIR__ . '/components.php'),
- 'modules' => require(__DIR__ . '/modules.php'),
- 'params' => require(__DIR__ . '/../params.php'),
- ];
- if (YII_ENV_DEV) {
- // configuration adjustments for 'dev' environment
- $config['bootstrap'][] = 'gii';
- $config['modules']['gii'] = [
- 'class' => 'yii\gii\Module',
- ];
- }
- return $config;
|