alpari/messenger-bundle

Integrates symfony/messenger component into symfony 2.7+

Installs: 589

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 3

Forks: 2

Open Issues: 0

Type:symfony-bundle

v1.0.0 2018-11-07 14:05 UTC

This package is auto-updated.

Last update: 2024-04-14 02:50:59 UTC


README

Build Status

Bundle for Messenger component backported for Symfony 2.7+ and <4.1 from Symfony 4.1's FrameworkBundle. The main difference with original bundle is that configuration must be set under messenger section instead of framework section in Symfony 4.1+.

This version of the Bundle uses 4.1+ version of the symfony/messenger component.

Usage

Install the bundle using composer:

composer require alpari/messenger-bundle

Register the bundle in your AppKernel class:

public function registerBundles()
{
    $bundles = array(
        // ...
        new \Symfony\Bundle\MessengerBundle\MessengerBundle(),
    );
}

Original bundle features are well-described in symfony documentation.