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.

27 lines
703 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <?php
  2. return [
  3. 'aliases' => [
  4. '@bower' => '@vendor/bower-asset',
  5. '@npm' => '@vendor/npm-asset',
  6. '@blobt' => '@vendor/blobt',
  7. '@iron' => '@vendor/iron'
  8. ],
  9. 'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
  10. 'timeZone' => 'Asia/Shanghai',
  11. 'language' => 'zh-CN',
  12. 'components' => [
  13. 'cache' => [
  14. 'class' => 'yii\caching\FileCache',
  15. ],
  16. 'authManager' => [
  17. 'class' => 'yii\rbac\DbManager',
  18. ],
  19. 'formatter' => [
  20. 'dateFormat' => 'php:Y-m-d',
  21. 'decimalSeparator' => ',',
  22. 'thousandSeparator' => ' ',
  23. 'currencyCode' => 'RMB',
  24. ],
  25. ],
  26. ];