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

26 行
713B

  1. <?php
  2. /**
  3. * Application configuration shared by all applications and test types
  4. */
  5. return [
  6. 'controllerMap' => [
  7. 'fixture' => [
  8. 'class' => 'yii\faker\FixtureController',
  9. 'fixtureDataPath' => '@tests/codeception/common/fixtures/data',
  10. 'templatePath' => '@tests/codeception/common/templates/fixtures',
  11. 'namespace' => 'tests\codeception\common\fixtures',
  12. ],
  13. ],
  14. 'components' => [
  15. 'db' => [
  16. 'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_tests',
  17. ],
  18. 'mailer' => [
  19. 'useFileTransport' => true,
  20. ],
  21. 'urlManager' => [
  22. 'showScriptName' => true,
  23. ],
  24. ],
  25. ];