_config.php 249 Bytes
Newer Older
1 2
<?php

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