Blame view

environments/dev/common/config/test-local.php 376 Bytes
6ba3c88a   Alex Savenko   all
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',
                  ],
              ],
          ]
      );