PHPackages                             anboo/rabbitmq-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. anboo/rabbitmq-bundle

ActiveLibrary[Queues &amp; Workers](/categories/queues)

anboo/rabbitmq-bundle
=====================

Bundle for Symfony

1.1.4(4y ago)141PHP

Since May 11Pushed 4y ago1 watchersCompare

[ Source](https://github.com/anboo/rabbitmq-bundle)[ Packagist](https://packagist.org/packages/anboo/rabbitmq-bundle)[ RSS](/packages/anboo-rabbitmq-bundle/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (7)Dependencies (2)Versions (7)Used By (0)

```
anboo_rabbitmq:
  rabbitmq:
    host: '127.0.0.1'
    port: 5672
    username: 'guest'
    password: 'guest'
```

```
# config/services.yaml
services:
    App\Consumer\:
        resource: '../src/Consumer/*'
        public: true
        tags: ['anboo.queue_consumer']
```

```
namespace App\AMQP\Consumer;

use Webslon\Bundle\ApiBundle\AMQP\Packet;
use Webslon\Bundle\ApiBundle\Annotation\Enqueue\Consume;
use Webslon\Bundle\ApiBundle\Consumer\Consumer;

class DemoConsumer extends Consumer
{
    /**
     * @param Packet $packet
     *
     * @Consume(
     *     queue="%kernel.environment%.my_service.calculator_multiple",
     *     exchangeBindKey="app.demo.calculator_multiple_222",
     *     exchangeName="app.demo.calculator_multiple"
     * )
     */
    public function demoAction(Packet $packet)
    {
        dump(
            $packet->getField('message'), // аналогично вызову $packet->getData()['message']
            $packet->getData(), //массив данных, ['message' => 'hello']
            $packet->getId(), //ID запроса
            $packet->getDate()->format('d.m.Y H:i:s') //Время, когда запрос был инициирован клиентом
        );
        $this->ack(); // Сообщаем RabbitMQ, что приняли сообщение
    }
}
```

```
 /**
     * @Consume(
     *     queue="demo_queue",
     *     exchangeName="demo_exchange",
     *     exchangeBindKey="demo_exchange_binding_key",
     *     queueParameters=@QueueParameters(
     *         durable=true,
     *         passive=false,
     *         exclusive=false,
     *         autoDelete=false,
     *         arguments={
     *             "x-expires": 10000
     *         }
     *     ),
     *     exchangeParameters=@ExchangeParameters(
     *         durable=true,
     *         passive=false,
     *         autoDelete= false,
     *         internal=false,
     *         type="topic",
     *         arguments={
     *             "x-expires": 10000
     *         }
     *     ),
     *     consumerParameters=@ConsumerParameters(
     *         noAck=false,
     *         exclusive=false,
     *         noLocal=false,
     *         noWait=false,
     *         arguments={
     *             "x-expires": 10000
     *         }
     *     )
     * )
     */
```

`bin/console anboo:api:consumer --setup-broker --max-messages=5000`

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~105 days

Recently: every ~0 days

Total

6

Last Release

1716d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/91d996e7c89c19edbb8b2fbd268666459b573ba06c33f94df5e0759ca7ce9452?d=identicon)[Danilatorsu](/maintainers/Danilatorsu)

---

Top Contributors

[![anboo](https://avatars.githubusercontent.com/u/7625387?v=4)](https://github.com/anboo "anboo (8 commits)")

### Embed Badge

![Health badge](/badges/anboo-rabbitmq-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/anboo-rabbitmq-bundle/health.svg)](https://phpackages.com/packages/anboo-rabbitmq-bundle)
```

###  Alternatives

[illuminate/queue

The Illuminate Queue package.

21332.6M1.5k](/packages/illuminate-queue)[vladimir-yuldashev/laravel-queue-rabbitmq

RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.

2.1k10.5M33](/packages/vladimir-yuldashev-laravel-queue-rabbitmq)[magento/community-edition

Magento 2 (Open Source)

12.2k53.6k13](/packages/magento-community-edition)[bschmitt/laravel-amqp

AMQP wrapper for Laravel and Lumen to publish and consume messages

2822.5M7](/packages/bschmitt-laravel-amqp)[wheelpros/fitment-platform-api

Magento 2 (Open Source)

12.1k1.2k](/packages/wheelpros-fitment-platform-api)[jwage/phpamqplib-messenger

Symfony messenger transport for the php-amqplib/php-amqplib library.

88227.2k1](/packages/jwage-phpamqplib-messenger)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
