mirror of
https://github.com/elyby/accounts.git
synced 2024-11-13 08:46:17 +05:30
17 lines
607 B
PHP
17 lines
607 B
PHP
<?php
|
|
defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', dirname(dirname(dirname(dirname(__DIR__)))));
|
|
|
|
/**
|
|
* Application configuration for api acceptance 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 . '/api/config/main.php'),
|
|
require(YII_APP_BASE_PATH . '/api/config/main-local.php'),
|
|
require(dirname(__DIR__) . '/config.php'),
|
|
require(dirname(__DIR__) . '/acceptance.php'),
|
|
require(__DIR__ . '/config.php'),
|
|
[
|
|
]
|
|
);
|