_config.php 297 Bytes
Newer Older
Qiang Xue committed
1 2
<?php

Qiang Xue committed
3
return yii\helpers\ArrayHelper::merge(
4 5 6 7 8 9 10 11 12
    require(__DIR__ . '/../../config/web.php'),
    require(__DIR__ . '/../_config.php'),
    [
        'components' => [
            'db' => [
                'dsn' => 'mysql:host=localhost;dbname=yii2_basic_unit',
            ],
        ],
    ]
Qiang Xue committed
13
);