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