mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-21 00:54:53 +08:00
15 lines
325 B
PHP
15 lines
325 B
PHP
<?php
|
|
return [
|
|
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
|
|
'extensions' => require(__DIR__ . '/../../vendor/yiisoft/extensions.php'),
|
|
'components' => [
|
|
'cache' => [
|
|
'class' => 'yii\caching\FileCache',
|
|
],
|
|
'mail' => [
|
|
'class' => 'yii\swiftmailer\Mailer',
|
|
'viewPath' => '@common/mails',
|
|
],
|
|
],
|
|
];
|