You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

unit.php 400B

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