_config.php 367 Bytes
Newer Older
1 2 3 4 5 6
<?php

// set correct script paths
$_SERVER['SCRIPT_FILENAME'] = TEST_ENTRY_FILE;
$_SERVER['SCRIPT_NAME'] = TEST_ENTRY_URL;

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