innmind/event-bus-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Event Bus Bundle

2.0.0 2017-02-12 13:29 UTC

This package is auto-updated.

Last update: 2022-02-01 13:00:09 UTC


README

master develop
Scrutinizer Code Quality Scrutinizer Code Quality
Code Coverage Code Coverage
Build Status Build Status

Symfony integration of innmind/event-bus that ease stacking event buses.

Installation

composer require innmind/event-bus-bundle

In your AppKernel.php add the following line:

//app/AppKernel.php

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Innmind\EventBusBundle\InnmindEventBusBundle,
        );
        // ...
    }
    // ...
}

Usage

$container->get('innmind_event_bus')->dispatch(new MyEvent);

In order to dispatch your events you need to define the listeners as services with the tag innmind_event_bus.listener with the attribte listen_to that will contain the command FQCN.