unit.php 400 Bytes
Newer Older
Mark committed
1
<?php
2 3 4
/**
 * Application config for common unit tests
 */
Mark committed
5
return yii\helpers\ArrayHelper::merge(
6 7
    require(YII_APP_BASE_PATH . '/common/config/main.php'),
    require(YII_APP_BASE_PATH . '/common/config/main-local.php'),
8 9
    require(dirname(__DIR__) . '/config.php'),
    require(dirname(__DIR__) . '/unit.php'),
10 11 12 13
    [
        'id' => 'app-common',
        'basePath' => dirname(__DIR__),
    ]
Mark committed
14
);