Update 1.1.md

This commit is contained in:
黄朝晖 2019-10-08 15:05:36 +08:00 committed by GitHub
parent 14f978b50c
commit a4623ba98d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,6 +139,10 @@ class ConfigProvider
}
```
## 调整默认的本地化语言
如果您在之前有使用 [hyperf/translation](https://github.com/hyperf-cloud/hyperf-translation) 组件,那么您需要检查一下 `config/autoload/translation.php` 文件内的 `locale` 配置项,如为 `zh-CN`,则需要改为 `zh_CN`,在 1.1 版本,我们统一了这个配置的值。
## 调整 composer.json 的依赖
由于要升级到 1.1 版本的组件,而原来 skeleton 项目默认情况下是依赖 1.0.x 版本的组件的,所以我们需要对依赖的约束条件进行一些调整,将原来所有 Hyperf 组件的依赖 `~1.0.0` 修改为 `~1.1.0`,修改完后需运行 `composer update` 来将依赖项升级到 1.1 版本。