test-local.php 381 B

12345678910111213141516
  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=127.0.0.1;dbname=cms_test',
  10. 'username' => 'root',
  11. 'password' => '',
  12. ]
  13. ],
  14. ]
  15. );