Add as a dependency via Composer:
composer require cdn77/rabbitmq-bundleIf 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],
...
]