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 466B

8 years ago
1234567891011121314
  1. <?php
  2. /**
  3. * Application configuration for console 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(YII_APP_BASE_PATH . '/console/config/main.php'),
  9. require(YII_APP_BASE_PATH . '/console/config/main-local.php'),
  10. require(dirname(__DIR__) . '/config.php'),
  11. require(dirname(__DIR__) . '/unit.php'),
  12. [
  13. ]
  14. );