An open API service indexing awesome lists of open source software.

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

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)