You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
918 B

<?php
return [
'aliases' => [
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
'@blobt' => '@vendor/blobt',
'@iron' => '@vendor/iron',
'@linyao' => '@vendor/linyao',
],
'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
'timeZone' => 'Asia/Shanghai',
'language' => 'zh-CN',
'components' => [
'cache' => [
'class' => 'yii\caching\FileCache',
],
'authManager' => [
'class' => 'yii\rbac\DbManager',
],
'formatter' => [
'dateFormat' => 'php:Y-m-d',
'decimalSeparator' => ',',
'thousandSeparator' => ' ',
'currencyCode' => 'RMB',
],
'redis' => [
'class' => 'yii\redis\Connection',
'hostname' => 'localhost',
'port' => 6379,
'database' => 0,
],
],
];