This is the core package of catchadmin, which contains some very useful commands, as well as the core functions of module management. Modules are automatically registered, routes are automatically loaded, and it is better to use with catchadmin.
Please go to catchadmin official
feat
新功能 featurefix
修复 bugdocs
文档注释style
代码格式(不影响代码运行的变动)refactor
重构、优化(既不增加新功能,也不是修复bug)perf
性能优化test
增加测试chore
构建过程或辅助工具的变动revert
回退build
打包close
关闭 issue
commit
的作用范围
commit
的描述
Type(scope): subject
例如修复 CatchTable
模块的 bug: **fix(scope?): 修复 some bugs **
设置 config/octane.php 中 listeners
return [
'listeners' => [
// received 事件中新增
RequestReceived::class => [
Catch\Octane\RegisterExceptionHandler::class
],
],
]