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

ActiveSymfony-bundle[Queues &amp; Workers](/categories/queues)

cmobi/rabbitmq-bundle
=====================

Bundle to manager RabbitMQ message broker using phpamqplib

v1.2.13(9y ago)16.6k2[2 issues](https://github.com/contamobi/CmobiRabbitmqBundle/issues)1proprietaryPHPPHP &gt;=5.6.1

Since Mar 31Pushed 9y ago1 watchersCompare

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

READMEChangelogDependencies (9)Versions (25)Used By (1)

CmobiRabbitmqBundle
-------------------

[](#cmobirabbitmqbundle)

[![Build Status](https://camo.githubusercontent.com/385f5f8b233e8948e2fc44137f77ee8745eadd9a76e201d08e845cb774c09eb2/68747470733a2f2f7472617669732d63692e6f72672f636f6e74616d6f62692f436d6f62695261626269746d7142756e646c652e7376673f6272616e63683d6d6173746572)](http://travis-ci.org/contamobi/CmobiRabbitmqBundle)[![Coverage Status](https://camo.githubusercontent.com/a662d88ae001f3ad56606b1f4a12265af72dad5a5442df1950e44973fafc60cb/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f636f6e74616d6f62692f436d6f62695261626269746d7142756e646c652f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/contamobi/CmobiRabbitmqBundle?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/cd29c8aa5437182352294075295f0d4002fe08ce4d1582343d94e57b5a8c0c0d/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f636f6e74616d6f62692f436d6f62695261626269746d7142756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/contamobi/CmobiRabbitmqBundle/?branch=master)[![Dependency Status](https://camo.githubusercontent.com/fb83a89ad8676128b0e4adb81db4144ba461bdaa3c4824d3a0663963a95cb8f8/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3536643062323638313537613639303033376262623665382f62616467652e7376673f7374796c653d666c6174)](https://www.versioneye.com/user/projects/56d0b268157a690037bbb6e8)

[![Latest Stable Version](https://camo.githubusercontent.com/6df3adea6160b5c72a1e99fe0518274e9e5dde7d08144cde107effcede1d2f67/68747470733a2f2f706f7365722e707567782e6f72672f636d6f62692f7261626269746d712d62756e646c652f762f737461626c65)](https://packagist.org/packages/cmobi/rabbitmq-bundle)[![Latest Unstable Version](https://camo.githubusercontent.com/0227ad1c63b542eaa4c17a23e101d19c9838eac06207429df8c9fc4759a05cf5/68747470733a2f2f706f7365722e707567782e6f72672f636d6f62692f7261626269746d712d62756e646c652f762f756e737461626c65)](https://packagist.org/packages/cmobi/rabbitmq-bundle)[![Total Downloads](https://camo.githubusercontent.com/160849734bf4d8c22625d1d8cefefeaeb2f04ef8580ad4e78ebe5ccd649ee320/68747470733a2f2f706f7365722e707567782e6f72672f636d6f62692f7261626269746d712d62756e646c652f646f776e6c6f616473)](https://packagist.org/packages/cmobi/rabbitmq-bundle)[![License](https://camo.githubusercontent.com/b9fcb50068b52961d47235c9b5c329121ac44be0449131c962afd84ec89b58ac/68747470733a2f2f706f7365722e707567782e6f72672f636d6f62692f7261626269746d712d62756e646c652f6c6963656e7365)](https://packagist.org/packages/cmobi/rabbitmq-bundle)

The bundle provides a [RabbitMq](http://rabbitmq.com/) integration for your [Symfony2](http://symfony.com/) Project. Based on [php-amqplib](https://github.com/php-amqplib/php-amqplib).

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

[](#installation)

```
$ composer require cmobi/rabbitmq-bundle --no-update

```

Register the bundle:

```
// app/AppKernel.php

public function registerBundles()
{
    return array(
        new \Cmobi\RabbitmqBundle\CmobiRabbitmqBundle(),
        // ...
    );
}
```

Install the bundle:

```
$ composer update cmobi/rabbitmq-bundle

```

Usage:
------

[](#usage)

Add `cmobi_rabbitmq` section in your configuration file:

```
cmobi_rabbitmq:
    connections:
        default:
            host: 172.17.0.1
            port: 5672
            user:     'guest'
            password: 'guest'
            vhost:    '/'
            lazy:     false
            connection_timeout: 3
            read_write_timeout: 3
            # requires php-amqplib v2.4.1+ and PHP5.4+
            keepalive: false
            # requires php-amqplib v2.4.1+
            heartbeat: 0
```

Register rpc servers:

```
cmobi_rabbitmq:
   //...
    rpc_servers:
        primary_server:
            queue: { name: 'primary_queue' }
        second_server:
            queue: { name: 'second_queue' }
```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 99.2% 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 ~20 days

Recently: every ~14 days

Total

21

Last Release

3319d ago

Major Versions

v0.0.19 → v1.0.02017-01-21

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/103149676?v=4)[cmobi](/maintainers/cmobi)[@cmobi](https://github.com/cmobi)

---

Top Contributors

[![dhanielo](https://avatars.githubusercontent.com/u/1815478?v=4)](https://github.com/dhanielo "dhanielo (120 commits)")[![joubertredrat](https://avatars.githubusercontent.com/u/1520407?v=4)](https://github.com/joubertredrat "joubertredrat (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k543.8M19.5k](/packages/laravel-framework)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M530](/packages/shopware-core)[open-dxp/opendxp

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

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

PHPackages © 2026

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