webmunkeez/cqrs-bundle

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

Installs: 131

Dependents: 2

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/webmunkeez/cqrs-bundle


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],
    // ...
];