mirror of
https://github.com/elyby/accounts.git
synced 2024-11-15 09:48:42 +05:30
21 lines
505 B
PHP
21 lines
505 B
PHP
<?php
|
|
return [
|
|
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
|
|
'components' => [
|
|
'cache' => [
|
|
'class' => 'yii\caching\FileCache',
|
|
],
|
|
'db' => [
|
|
'class' => 'yii\db\Connection',
|
|
'charset' => 'utf8',
|
|
],
|
|
'mailer' => [
|
|
'class' => 'yii\swiftmailer\Mailer',
|
|
'viewPath' => '@common/mail',
|
|
],
|
|
'security' => [
|
|
'passwordHashStrategy' => 'password_hash',
|
|
]
|
|
],
|
|
];
|