mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-20 02:16:41 +08:00
17 lines
426 B
PHP
17 lines
426 B
PHP
<?php
|
|
|
|
return yii\helpers\ArrayHelper::merge(
|
|
require(__DIR__ . '/../../config/main.php'),
|
|
require(__DIR__ . '/../../config/main-local.php'),
|
|
require(__DIR__ . '/../_config.php'),
|
|
[
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_unit',
|
|
],
|
|
],
|
|
'id' => 'app-common',
|
|
'basePath' => dirname(__DIR__),
|
|
]
|
|
);
|