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

https://github.com/serrexlabs/web-blueprint


https://github.com/serrexlabs/web-blueprint

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

**Initiating Project**

`` php artisan init:project ``

**Module creation**

`` php artisan make:module ``
* Then you need to specify the root directory
* Ex: Root\

**Command creation**

`` php artisan make:cqrs:command ``
* As a convention, append Command postfix end of every command (Ex: SampleCommand)

**Command Handler creation**

`` php artisan make:cqrs:command-handler ``
* As a convention, append CommandHandler postfix end of every command handler(Ex: SampleCommandHandler)

**Query creation**

`` php artisan make:cqrs:query ``

* As a convention, append Query postfix end of every query (Ex: SampleQuery)

**Query handler creation**

`` php artisan make:cqrs:query-handler ``

* As a convention, append QueryHandler postfix end of every query handler (Ex: SampleQueryHandler)

**Repository creation**

`` php artisan make:repository ``

* As a convention, append Repository postfix end of every repository (Ex: SampleRepository)