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

$config = [];

if (!YII_ENV_TEST) {
6 7 8 9
    // configuration adjustments for 'dev' environment
    $config['preload'][] = 'debug';
    $config['modules']['debug'] = 'yii\debug\Module';
    $config['modules']['gii'] = 'yii\gii\Module';
Mark committed
10 11 12
}

return $config;