選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

config.php 355B

1年前
123456789101112131415
  1. <?php
  2. $config = yii\helpers\ArrayHelper::merge(
  3. require(__DIR__ . '/../../../common/config/main.php'),
  4. require(__DIR__ . '/../../../common/config/test-local.php'),
  5. [
  6. 'id' => 'app-tests',
  7. 'components' => [
  8. 'urlManager' => [
  9. 'showScriptName' => true,
  10. ]
  11. ]
  12. ]
  13. );
  14. return $config;