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.

23 lines
723 B

5 years ago
  1. <?php
  2. return [
  3. 'components' => [
  4. 'db' => [
  5. 'class' => 'yii\db\Connection',
  6. 'dsn' => 'mysql:host=localhost;dbname=',
  7. 'username' => '',
  8. 'password' => '',
  9. 'charset' => 'utf8',
  10. 'enableSchemaCache' => true,
  11. 'schemaCacheDuration' => 86400, // time in seconds
  12. ],
  13. 'mailer' => [
  14. 'class' => 'yii\swiftmailer\Mailer',
  15. 'viewPath' => '@common/mail',
  16. // send all mails to a file by default. You have to set
  17. // 'useFileTransport' to false and configure a transport
  18. // for the mailer to send real emails.
  19. 'useFileTransport' => true,
  20. ],
  21. ],
  22. ];