serrexlabs / laravel-cqrs
此包的最新版本(dev-master)没有提供许可证信息。
dev-master
2018-07-25 18:03 UTC
Requires
- illuminate/console: ~5.5
- illuminate/container: ~5.5
- illuminate/contracts: ~5.5
- illuminate/http: ~5.5
- illuminate/support: ~5.5
- league/fractal: ^0.17.0
This package is auto-updated.
Last update: 2024-08-29 04:43:11 UTC
README
启动项目
php artisan init:project <项目名称>
模块创建
php artisan make:module
命令创建
php artisan make:cqrs:command <命令名称>
- 惯例,在每个命令的末尾添加 Command 后缀(例如:SampleCommand)
查询创建
php artisan make:cqrs:query <查询名称>
- 惯例,在每个查询的末尾添加 Query 后缀(例如:SampleQuery)
仓库创建
php artisan make:repository <仓库名称>
- 惯例,在每个仓库的末尾添加 Repository 后缀(例如:SampleRepository)