mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-18 17:21:26 +08:00
15 lines
296 B
PHP
15 lines
296 B
PHP
<?php
|
|
|
|
$config = [];
|
|
|
|
if (!YII_ENV_TEST) {
|
|
// configuration adjustments for 'dev' environment
|
|
$config['bootstrap'][] = 'debug';
|
|
$config['modules']['debug'] = 'yii\debug\Module';
|
|
|
|
$config['bootstrap'][] = 'gii';
|
|
$config['modules']['gii'] = 'yii\gii\Module';
|
|
}
|
|
|
|
return $config;
|