2017 © Pedro Peláez
 

library laravel-cqrs

image

serrexlabs/laravel-cqrs

  • Wednesday, July 25, 2018
  • by serrexlab
  • Repository
  • 1 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Initiating Project, (*1)

php artisan init:project <project-name>, (*2)

Module creation, (*3)

php artisan make:module, (*4)

Command creation, (*5)

php artisan make:cqrs:command <command-name>, (*6)

  • As a convention, append Command postfix end of every command (Ex: SampleCommand)

Query creation, (*7)

php artisan make:cqrs:query <cquery-name>, (*8)

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

Repository creation, (*9)

php artisan make:repository <repository-name>, (*10)

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

The Versions