config.php 355 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Application configuration shared by all test types
  4. */
  5. return [
  6. 'components' => [
  7. 'db' => [
  8. 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_tests',
  9. ],
  10. 'mailer' => [
  11. 'useFileTransport' => true,
  12. ],
  13. 'urlManager' => [
  14. 'showScriptName' => true,
  15. ],
  16. ],
  17. ];