Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

29 lines
970B

  1. <?php
  2. return [
  3. 'components' => [
  4. 'db' => [
  5. 'class' => 'yii\db\Connection',
  6. 'dsn' => 'mysql:host=localhost;dbname=opendistrib_test',
  7. 'username' => 'root',
  8. 'password' => 'root',
  9. 'charset' => 'utf8',
  10. ],
  11. 'mailer' => [
  12. 'class' => 'yii\swiftmailer\Mailer',
  13. 'viewPath' => '@common/mail',
  14. // send all mails to a file by default. You have to set
  15. // 'useFileTransport' to false and configure a transport
  16. // for the mailer to send real emails.
  17. 'useFileTransport' => true,
  18. 'transport' => [
  19. 'class' => 'Swift_SmtpTransport',
  20. 'host' => 'smtp-laclic.alwaysdata.net',
  21. 'username' => 'nepasrepondre@laclic.fr',
  22. 'password' => 'UPdz4ain73u3T3S74z2MHG9gUKnu6Qq6',
  23. 'port' => '25',
  24. //'encryption' => 'tls',
  25. ],
  26. ],
  27. ],
  28. ];