main-local.php 552 B

12345678910111213141516
  1. <?php
  2. return [
  3. 'components' => [
  4. 'db' => require(__DIR__ . '/db.php'),
  5. 'dbXcrm' => require(__DIR__ . '/db-xcrm.php'),
  6. 'redis' => require(__DIR__ . '/redis.php'),
  7. 'mailer' => [
  8. 'class' => 'yii\swiftmailer\Mailer',
  9. 'viewPath' => '@common/mail',
  10. // send all mails to a file by default. You have to set
  11. // 'useFileTransport' to false and configure a transport
  12. // for the mailer to send real emails.
  13. 'useFileTransport' => true,
  14. ],
  15. ],
  16. ];