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.
 
 
 
 
 
 

14 lines
321 B

  1. <?php
  2. return yii\helpers\ArrayHelper::merge(
  3. require(__DIR__ . '/main.php'),
  4. require(__DIR__ . '/main-local.php'),
  5. require(__DIR__ . '/test.php'),
  6. [
  7. 'components' => [
  8. 'db' => [
  9. 'dsn' => 'mysql:host=localhost;dbname=yii2advanced_test',
  10. ]
  11. ],
  12. ]
  13. );