mirror of
https://github.com/elyby/accounts.git
synced 2024-12-23 22:00:06 +05:30
18 lines
416 B
PHP
18 lines
416 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',
|
||
|
],
|
||
|
],
|
||
|
];
|