main-local.php 296 Bytes
Newer Older
1
<?php
Mark committed
2 3 4 5

$config = [];

if (!YII_ENV_TEST) {
6
    // configuration adjustments for 'dev' environment
7
    $config['bootstrap'][] = 'debug';
8
    $config['modules']['debug'] = 'yii\debug\Module';
9 10

    $config['bootstrap'][] = 'gii';
11
    $config['modules']['gii'] = 'yii\gii\Module';
Mark committed
12 13 14
}

return $config;