webmunkeez/cqrs-bundle

Command-Query-Responsibility-Segregation pattern made for Symfony.


README

This bundle unleashes the Command-Query-Responsibility-Segregation pattern on Symfony applications.

Installation

Use Composer to install this bundle:

$ composer require webmunkeez/cqrs-bundle

Add the bundle in your application kernel:

// config/bundles.php

return [
    // ...
    Webmunkeez\CQRSBundle\WebmunkeezCQRSBundle::class => ['all' => true],
    // ...
];