You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
352 B
19 lines
352 B
7 years ago
|
<?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;
|