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.
14 lines
400 B
14 lines
400 B
<?php
|
|
/**
|
|
* Application config for common 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(dirname(__DIR__) . '/config.php'),
|
|
require(dirname(__DIR__) . '/unit.php'),
|
|
[
|
|
'id' => 'app-common',
|
|
'basePath' => dirname(__DIR__),
|
|
]
|
|
);
|
|
|