Blame view

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