1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- return [
- 'aliases' => [
- '@bower' => '@vendor/bower-asset',
- '@npm' => '@vendor/npm-asset',
- ],
- 'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
- 'sourceLanguage' => 'en',
- 'language' => 'zh-CN',
- 'components' => [
- 'cache' => [
- 'class' => 'yii\caching\FileCache',
- ],
- 'redis' => [
- 'class' => 'yii\redis\Connection',
- 'hostname' => 'localhost',
- 'port' => 6378,
- 'database' => 1,
- 'password' => 'airent-redis~123',
- ],
- 'i18n' => [
- 'translations' => [
- '*' => [
- 'class' => 'yii\i18n\PhpMessageSource',
- 'basePath'=>'@common/messages',
- 'fileMap' => [
- 'common' => 'common.php',
- 'error' => 'errorCode.php',
- ],
- ],
- ],
- ],
- ],
- ];
|