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.
16 lines
505 B
16 lines
505 B
<?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'),
|
|
[
|
|
]
|
|
);
|
|
|