PHPackages                             myonlinestore/rabbitmq-manager-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. myonlinestore/rabbitmq-manager-bundle

Abandoned → [phobetor/rabbitmq-supervisor-bundle](/?search=phobetor%2Frabbitmq-supervisor-bundle)Symfony-bundle[Queues &amp; Workers](/categories/queues)

myonlinestore/rabbitmq-manager-bundle
=====================================

Configuration generator for RabbitMQ with Supervisord and rabbitmq-cli-consumer support

0.1.2(8y ago)019.4kMITPHPPHP &gt;=5.5.0

Since Mar 1Pushed 8y ago5 watchersCompare

[ Source](https://github.com/MyOnlineStore/rabbitmq-manager-bundle)[ Packagist](https://packagist.org/packages/myonlinestore/rabbitmq-manager-bundle)[ Docs](https://github.com/MyOnlineStore/rabbitmq-manager-bundle)[ RSS](/packages/myonlinestore-rabbitmq-manager-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)Dependencies (12)Versions (5)Used By (0)

RabbitMqManagerBundle
=====================

[](#rabbitmqmanagerbundle)

[![Latest Version](https://camo.githubusercontent.com/08aca7fe6a3ddea8afde90aef138046b844ed8026816a812dc1b2eb47490ba07/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f4d794f6e6c696e6553746f72652f7261626269746d712d6d616e616765722d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://github.com/MyOnlineStore/rabbitmq-manager-bundle/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Build Status](https://camo.githubusercontent.com/ffea94ece35284af239eb0cf219e33c1c35f8c46d70e0d090e9eb09a580a4fdd/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f4d794f6e6c696e6553746f72652f7261626269746d712d6d616e616765722d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/MyOnlineStore/rabbitmq-manager-bundle)[![Code Coverage](https://camo.githubusercontent.com/5d531a0d2c47ce0fdac265e4358cebac6589b98b230828250476f743029b46b1/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f4d794f6e6c696e6553746f72652f7261626269746d712d6d616e616765722d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/MyOnlineStore/rabbitmq-manager-bundle)[![Quality Score](https://camo.githubusercontent.com/ff4dc9b57f83a57ca3bf02ab37094dc8de66e71521672f59b321b149de525d65/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f4d794f6e6c696e6553746f72652f7261626269746d712d6d616e616765722d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/MyOnlineStore/rabbitmq-manager-bundle)[![Total Downloads](https://camo.githubusercontent.com/6740a96366390e33e1abde991305251a0d0d3a9a446c48ec3b11a65c4afa6e85/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f4d794f6e6c696e6553746f72652f7261626269746d712d6d616e616765722d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/MyOnlineStore/rabbitmq-manager-bundle)

Introduction
------------

[](#introduction)

This package is based on  and has additional support for . To avoid runtime cache in a (more) efficient way.

Installation
------------

[](#installation)

Require the bundle and its dependencies with composer:

```
$ composer require myonlinestore/rabbitmq-manager-bundle
```

Register the bundle into your `app/AppKernel.php`:

```
public function registerBundles()
{
    $bundles = [
        new MyOnlineStore\Bundle\RabbitMqManagerBundle\RabbitMqManagerBundle(),
    ];
}
```

Usage
-----

[](#usage)

All configuration options are optional.

### Full Default Configuration

[](#full-default-configuration)

```
rabbit_mq_manager:
    path: "%kernel.root_dir%/../var/supervisor/%kernel.name%"
    commands: # console commands to execute for specific worker types
      cli_consumer_invoker: "rabbitmq-manager:consumer" # this will use the rabbitmq-cli-consumer invoker, defined within this package.
      consumers: "rabbitmq:consumer" # OldSoundRabbitMqBundle default consumer command
      rpc_servers: "rabbitmq:rpc-server" # OldSoundRabbitMqBundle default rpc-server command
    consumers:
      general:
        processor: "bundle" # either "bundle" or "cli-consumer"
        messages: 0 # amount of messages to process before restarting the consumer (only applicable for processor "bundle")
        compression: true # use compression (only applicable for processor "cli-consumer")
        worker: # http://supervisord.org/configuration.html#program-x-section-values
          count: 1
          startsecs: 0
          autorestart: true
          stopsignal: "INT"
          stopasgroup: true
          stopwaitsecs: 60
      individual:
        # my_consumer:
          # see general configuration
    rpc_servers: # see consumers
```

### Example configuration

[](#example-configuration)

```
rabbit_mq_manager:
    consumers:
      general:
        processor: "bundle"
        messages: 1 # only consume 1 message before quiting/restarting
        worker: # http://supervisord.org/configuration.html#program-x-section-values
          count: 1
      individual:
        my_consumer:
          messages: 0 # don't restart "my_consumer" after consuming messages
          worker:
              count: 8 # start 8 listeners/processors for "my_consumer"
        my_other_consumer:
          processor: "cli-consumer"
          compression: true
          worker:
            count: 4
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 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 ~97 days

Total

3

Last Release

3213d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2146611?v=4)[Fred-Jan van der Eijken](/maintainers/fred-jan)[@fred-jan](https://github.com/fred-jan)

---

Top Contributors

[![kusozayka](https://avatars.githubusercontent.com/u/363388?v=4)](https://github.com/kusozayka "kusozayka (38 commits)")

---

Tags

rabbitmqsupervisordrabbitmq-cli-consumer

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M528](/packages/shopware-core)[chameleon-system/chameleon-base

The Chameleon System core.

1027.9k4](/packages/chameleon-system-chameleon-base)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9417.2k58](/packages/open-dxp-opendxp)

PHPackages © 2026

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