mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 01:27:20 +08:00
14 lines
253 B
PHP
14 lines
253 B
PHP
<?php
|
|
|
|
return yii\helpers\ArrayHelper::merge(
|
|
require(__DIR__ . '/../../config/console.php'),
|
|
require(__DIR__ . '/../_config.php'),
|
|
[
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional',
|
|
],
|
|
],
|
|
]
|
|
);
|