mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-13 20:59:12 +08:00
14 lines
445 B
PHP
14 lines
445 B
PHP
<?php
|
|
|
|
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'),
|
|
[
|
|
]
|
|
);
|