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.
17 lines
505 B
17 lines
505 B
5 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Application configuration for backend unit tests
|
||
|
*/
|
||
|
return yii\helpers\ArrayHelper::merge(
|
||
|
require(YII_APP_BASE_PATH . '/common/config/main.php'),
|
||
|
require(YII_APP_BASE_PATH . '/common/config/main-local.php'),
|
||
|
require(YII_APP_BASE_PATH . '/backend/config/main.php'),
|
||
|
require(YII_APP_BASE_PATH . '/backend/config/main-local.php'),
|
||
|
require(dirname(__DIR__) . '/config.php'),
|
||
|
require(dirname(__DIR__) . '/unit.php'),
|
||
|
require(__DIR__ . '/config.php'),
|
||
|
[
|
||
|
]
|
||
|
);
|