main-local.php 606 B

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