mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-10 09:17:39 +01:00
15 lines
390 B
PHP
15 lines
390 B
PHP
<?php
|
|
/**
|
|
* Application config for common unit tests
|
|
*/
|
|
return yii\helpers\ArrayHelper::merge(
|
|
require(YII_ROOT_DIR . '/common/config/main.php'),
|
|
require(YII_ROOT_DIR . '/common/config/main-local.php'),
|
|
require(dirname(__DIR__) . '/config.php'),
|
|
require(dirname(__DIR__) . '/unit.php'),
|
|
[
|
|
'id' => 'app-common',
|
|
'basePath' => dirname(__DIR__),
|
|
]
|
|
);
|