octicon-rss(16/)
You've already forked yii2
mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-10 02:13:17 +08:00
17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
return [
|
|
'components' => [
|
|
'db' => [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2advanced',
|
|
'username' => 'root',
|
|
'password' => '',
|
|
'charset' => 'utf8',
|
|
],
|
|
'mail' => [
|
|
'class' => 'yii\swiftmailer\Mailer',
|
|
'viewPath' => '@common/mail',
|
|
],
|
|
],
|
|
];
|