| 1234567891011121314151617181920212223 |
- <?php
- return [
- 'components' => [
- /**
- * dsn:
- * - mysql mysql:host=localhost;dbname=feehi
- * - sqlite sqlite:/feehi.db
- */
- 'db' => [
- 'class' => yii\db\Connection::className(),
- 'dsn' => 'sqlite:/feehi.db',
- 'username' => 'root',
- 'password' => '',
- 'charset' => 'utf8',
- 'tablePrefix' => "",
- ],
- 'mailer' => [
- 'class' => yii\swiftmailer\Mailer::className(),
- 'viewPath' => '@common/mail',
- ],
- ],
- ];
|