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

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