main-local.php 569 B

1234567891011121314151617181920212223
  1. <?php
  2. return [
  3. 'components' => [
  4. /**
  5. * dsn:
  6. * - mysql mysql:host=localhost;dbname=feehi
  7. * - sqlite sqlite:/feehi.db
  8. */
  9. 'db' => [
  10. 'class' => yii\db\Connection::className(),
  11. 'dsn' => 'sqlite:/feehi.db',
  12. 'username' => 'root',
  13. 'password' => '',
  14. 'charset' => 'utf8',
  15. 'tablePrefix' => "",
  16. ],
  17. 'mailer' => [
  18. 'class' => yii\swiftmailer\Mailer::className(),
  19. 'viewPath' => '@common/mail',
  20. ],
  21. ],
  22. ];