mirror of
https://github.com/elyby/accounts.git
synced 2024-11-15 17:56:30 +05:30
15 lines
400 B
PHP
15 lines
400 B
PHP
|
<?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__),
|
||
|
]
|
||
|
);
|