https://github.com/serrexlabs/laravel-cqrs
Simple CQRS package for laravel
https://github.com/serrexlabs/laravel-cqrs
Last synced: about 2 months ago
JSON representation
Simple CQRS package for laravel
- Host: GitHub
- URL: https://github.com/serrexlabs/laravel-cqrs
- Owner: serrexlabs
- Created: 2018-07-25T17:36:41.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-25T18:04:08.000Z (almost 7 years ago)
- Last Synced: 2025-03-03T02:33:54.955Z (3 months ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**Initiating Project**
`` php artisan init:project ``
**Module creation**
`` php artisan make:module ``
**Command creation**
`` php artisan make:cqrs:command ``
* As a convention, append Command postfix end of every command (Ex: SampleCommand)
**Query creation**`` php artisan make:cqrs:query ``
* As a convention, append Query postfix end of every query (Ex: SampleQuery)
**Repository creation**
`` php artisan make:repository ``
* As a convention, append Repository postfix end of every repository (Ex: SampleRepository)