| 1234567891011121314151617181920 |
- <?php
- $config = [
- ];
- if (!YII_ENV_TEST) {
- // configuration adjustments for 'dev' environment
- $config['bootstrap'][] = 'debug';
- $config['modules']['debug'] = [
- 'class' => 'yii\debug\Module',
- ];
- $config['bootstrap'][] = 'gii';
- $config['modules']['gii'] = [
- 'class' => 'yii\gii\Module',
- ];
- }
- return $config;
|