main-local.php 353 B

1234567891011121314151617181920
  1. <?php
  2. $config = [
  3. ];
  4. if (!YII_ENV_TEST) {
  5. // configuration adjustments for 'dev' environment
  6. $config['bootstrap'][] = 'debug';
  7. $config['modules']['debug'] = [
  8. 'class' => 'yii\debug\Module',
  9. ];
  10. $config['bootstrap'][] = 'gii';
  11. $config['modules']['gii'] = [
  12. 'class' => 'yii\gii\Module',
  13. ];
  14. }
  15. return $config;