yii2-netdisk/tests/unit/_config.php

14 lines
243 B
PHP
Raw Normal View History

2013-12-30 05:25:22 +08:00
<?php
2013-12-30 22:22:18 +08:00
return yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../../config/web.php'),
require(__DIR__ . '/../_config.php'),
[
'components' => [
'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_unit',
],
2013-12-30 05:25:22 +08:00
],
2013-12-30 22:22:18 +08:00
]
);