Update changelog [skip ci]

This commit is contained in:
Pig Fang 2019-08-20 21:58:11 +08:00
parent 70726a1c5a
commit cd9fa0b3d3
2 changed files with 6 additions and 0 deletions

View File

@ -1,8 +1,11 @@
## Added
- Plugin system: `config.blade.php` as default config file name.
- Plugin system: Allow to registering service providers automatically.
- Plugin system: Added Filters API.
- Allow to enable a plugin by running `php artisan plugin:enable {name}`.
- Allow to disable a plugin by running `php artisan plugin:disable {name}`.
- Support multiple plugins directories. (Splited by comma in ".env" file.)
## Tweaked

View File

@ -1,8 +1,11 @@
## 新增
- 插件系统:`config.blade.php` 为默认情况下配置视图文件名
- 插件系统支持自动注册服务容器Service Provider
- 插件系统:新增 Filters API
- 支持以 `php artisan plugin:enable {name}` 的方式开启插件
- 支持以 `php artisan plugin:disable {name}` 的方式关闭插件
- 支持指定多个插件目录(在 .env 文件中以逗号分隔)
## 调整