aiadmin / core
ai admin core package
v0.0.1
2023-10-16 14:44 UTC
Requires
- php: ^8.1
- ext-pdo: *
- ext-zip: *
- laravel/prompts: ^0.1.4
- laravel/sanctum: ^3.2
- maatwebsite/excel: ^3.1
README
This is the core package of aiadmin, 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 aiadmin.
How to Use
Please go to aiadmin official
PR 提交规范
Type
feat
新功能 featurefix
修复 bugdocs
文档注释style
代码格式(不影响代码运行的变动)refactor
重构、优化(既不增加新功能,也不是修复bug)perf
性能优化test
增加测试chore
构建过程或辅助工具的变动revert
回退build
打包close
关闭 issue
scope 选填
commit
的作用范围
subject
commit
的描述
Type(scope): subject
例如修复 AITable
模块的 bug: **fix(scope?): 修复 some bugs **
use in octane
设置 config/octane.php 中 listeners
return [ 'listeners' => [ // received 事件中新增 RequestReceived::class => [ AI\Octane\RegisterExceptionHandler::class ], ], ]