functional.php 306 Bytes
Newer Older
1
<?php
2 3
$_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
$_SERVER['SCRIPT_NAME'] = YII_TEST_ENTRY_URL;
4

5 6 7
/**
 * Application configuration for functional tests
 */
Qiang Xue committed
8
return yii\helpers\ArrayHelper::merge(
9
    require(__DIR__ . '/../../../config/web.php'),
10
    require(__DIR__ . '/config.php'),
11
    [
12

13
    ]
Qiang Xue committed
14
);