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.

18 lines
626B

  1. <?php
  2. defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', dirname(dirname(dirname(dirname(__DIR__)))));
  3. /**
  4. * Application configuration for frontend acceptance tests
  5. */
  6. return yii\helpers\ArrayHelper::merge(
  7. require(YII_APP_BASE_PATH . '/common/config/main.php'),
  8. require(YII_APP_BASE_PATH . '/common/config/main-local.php'),
  9. require(YII_APP_BASE_PATH . '/frontend/config/main.php'),
  10. require(YII_APP_BASE_PATH . '/frontend/config/main-local.php'),
  11. require(dirname(__DIR__) . '/config.php'),
  12. require(dirname(__DIR__) . '/acceptance.php'),
  13. require(__DIR__ . '/config.php'),
  14. [
  15. ]
  16. );