Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 420 Bytes

File metadata and controls

19 lines (14 loc) · 420 Bytes

Installation

Add as a dependency via Composer:

composer require cdn77/rabbitmq-bundle

If you're not using Symfony Flex, you will also need to enable the bundle by adding Cdn77RabbitMQBundle to bundles.php, that is required by registerBundles() in your Kernel:

use Cdn77\RabbitMQBundle\Cdn77RabbitMQBundle;

return [
    ...
    Cdn77RabbitMQBundle::class => ['all' => true],
    ...
]