2017 © Pedro Peláez
 

symfony-bundle cqrs-bundle

Helthe CQRS bundle for Symfony 2

image

helthe/cqrs-bundle

Helthe CQRS bundle for Symfony 2

  • Tuesday, September 16, 2014
  • by carlalexander
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Helthe CQRS Bundle Build Status Scrutinizer Code Quality

Helthe CQRS Bundle integrates the Helthe CQRS Component with your Symfony2 application., (*1)

Installation

Step 1: Add package requirement in Composer

Manually

Add the following in your composer.json:, (*2)

{
    "require": {
        // ...
        "helthe/cqrs-bundle": "dev-master"
    }
}

Using the command line

$ composer require 'helthe/cqrs-bundle=dev-master'

Step 2: Register the bundle in the kernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Helthe\Bundle\CQRSBundle\HeltheCQRSBundle(),
    );
}

Usage

The bundle registers command handler services automatically if they are tagged with the helthe_cqrs.command_handler tag. The tag requires a command attribute which represents the command name. The command name needs to be the full class name of the command class the handler can execute., (*3)

<service id="acme_demo.command_handler.your_handler_name" class="Acme\DemoBundle\CommandHandler\AcmeCommandHandler">
    <tag name="helthe_cqrs.command_handler" command="Acme\DemoBundle\Command\AcmeCommand" />
</service>

Bugs

For bugs or feature requests, please create an issue., (*4)

The Versions

16/09 2014

dev-master

9999999-dev https://helthe.co

Helthe CQRS bundle for Symfony 2

  Sources   Download

MIT

The Requires

 

by Carl Alexander

cqrs