PHPackages                             aztech/event-bus-extra-amqp - 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. aztech/event-bus-extra-amqp

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

aztech/event-bus-extra-amqp
===========================

aztech/event-bus AMQP channel provider

v1.0.1(11y ago)034PHP

Since Aug 28Pushed 11y ago1 watchersCompare

[ Source](https://github.com/aztech-dev/event-bus-extra-amqp)[ Packagist](https://packagist.org/packages/aztech/event-bus-extra-amqp)[ RSS](/packages/aztech-event-bus-extra-amqp/feed)WikiDiscussions master Synced today

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

aztech/event-bus-extra-amqp
===========================

[](#aztechevent-bus-extra-amqp)

Build status
------------

[](#build-status)

[![Build Status](https://camo.githubusercontent.com/6cb3396456a04e630fdc8866bde3b0197209a52f2fb5f04b344430ceedf2e629/68747470733a2f2f7472617669732d63692e6f72672f617a746563682d6465762f6576656e742d6275732d65787472612d616d71702e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/aztech-dev/event-bus-extra-amqp)[![Code Coverage](https://camo.githubusercontent.com/60660cbbc6b16877a71498bac185825a1981f45e7ebb8c4d7a2a4d07b140a2e1/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f617a746563682d6465762f6576656e742d6275732d65787472612d616d71702f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/aztech-dev/event-bus-extra-amqp/?branch=master)[![Scrutinizer Quality Score](https://camo.githubusercontent.com/ccdb0d8c9877798177d1dedc2422b910b41c1d086ddba2358cda54466ef0e1b9/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f617a746563682d6465762f6576656e742d6275732d65787472612d616d71702f6261646765732f7175616c6974792d73636f72652e706e673f733d36363865346466356261313633633830343530343235376434613032366130613534396632323061)](https://scrutinizer-ci.com/g/aztech-dev/event-bus-extra-amqp/)[![Dependency Status](https://camo.githubusercontent.com/cb12b4e1b96d5538ba2849553f22736eaf98dd9582b661fcefcf2b202293b4da/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3533623932613834363039666630346637663030303030332f62616467652e737667)](https://www.versioneye.com/user/projects/53b92a84609ff04f7f000003)[![HHVM Status](https://camo.githubusercontent.com/2e070d255f58cc11a549b06ea592cafafb2efdccbe0522177eee63d555a964a2/687474703a2f2f6868766d2e683463632e64652f62616467652f617a746563682f6576656e742d6275732d65787472612d616d71702e706e67)](http://hhvm.h4cc.de/package/aztech/event-bus-extra-amqp)

Stability
---------

[](#stability)

[![Latest Stable Version](https://camo.githubusercontent.com/d462b76affb776c6b1fa7750807bf7185e1e425992b659eb2480edf42e2e8218/68747470733a2f2f706f7365722e707567782e6f72672f617a746563682f6576656e742d6275732d65787472612d616d71702f762f737461626c652e706e67)](https://packagist.org/packages/aztech/event-bus-extra-amqp)[![Latest Unstable Version](https://camo.githubusercontent.com/25980f4dddd7636d74b6dbff0bd6cd43bf115f1c276b60e1ff8523d9b2b249a6/68747470733a2f2f706f7365722e707567782e6f72672f617a746563682f6576656e742d6275732d65787472612d616d71702f762f756e737461626c652e706e67)](https://packagist.org/packages/aztech/event-bus-extra-amqp)

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

[](#installation)

### Via Composer

[](#via-composer)

Composer is the only supported way of installing *aztech/event-bus-extra-amqp* . Don't know Composer yet ? [Read more about it](https://getcomposer.org/doc/00-intro.md).

`$ composer require "aztech/event-bus-extra-amqp":"~1"`

Autoloading
-----------

[](#autoloading)

Add the following code to your bootstrap file :

```
require_once 'vendor/autoload.php';
```

Dependencies
------------

[](#dependencies)

- videlalvaro/php-amqplib : ~2

Supported elements :
--------------------

[](#supported-elements-)

- Persistent publish
- Subscribe

Configuration options &amp; defaults
------------------------------------

[](#configuration-options--defaults)

ParameterDefaultDescription`host``127.0.0.1`Hostname of the AMQP broker.`port``5672`Listening port of the AMQP broker.`user``guest`AMQP broker username.`pass``guest`AMQP broker password.`vhost``/`Virtual host name on the AMQP broker.`exchange``exchange`Name of the exchange.`event-queue``event-queue`Name of the event queue.`event-prefix`` `Prefix that will be automatically added to published/stripped from received event topics.`auto-create``true`Toggles the providers topology creation feature. Allows to auto-create the required exchanges, queues, and bindings for the provider's need.Initialization
--------------

[](#initialization)

```
require_once 'vendor/autoload.php';

use \Aztech\Events\Bus\Events;
use \Aztech\Events\Bus\Plugins\Amqp\Amqp;

Amqp::loadPlugin();

// See options chart for actual parameters
$options = array(...);

$publisher = Events::createPublisher('amqp', $options);
$event = Events::create('category', array('property' => 'value'));

$publisher->publish($event);
// ...
```

Caveats
-------

[](#caveats)

At the time being, the AMQP event plugin uses topic based routing to publish events. Multiple nodes connecting to a single queue will work in round-robin mode.

It is possible to use different routing scenarios/exchange types, but that is left as an exercise to the reader (Hint: no need to build/patch the current plugin).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

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

Total

2

Last Release

4272d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/58d21270e5d40f7ee05bb875b2442496ffd38cec041f7fdcc507b8b040f7e7f8?d=identicon)[thibaud-evaneos](/maintainers/thibaud-evaneos)

---

Top Contributors

[![aztech-dev](https://avatars.githubusercontent.com/u/93562568?v=4)](https://github.com/aztech-dev "aztech-dev (4 commits)")

---

Tags

eventeventsrabbitmqAMQPdispatchaztech

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/aztech-event-bus-extra-amqp/health.svg)

```
[![Health](https://phpackages.com/badges/aztech-event-bus-extra-amqp/health.svg)](https://phpackages.com/packages/aztech-event-bus-extra-amqp)
```

###  Alternatives

[php-amqplib/rabbitmq-bundle

Integrates php-amqplib with Symfony &amp; RabbitMq. Formerly emag-tech-labs/rabbitmq-bundle, oldsound/rabbitmq-bundle.

1.3k20.1M64](/packages/php-amqplib-rabbitmq-bundle)[enqueue/enqueue

Message Queue Library

19820.0M56](/packages/enqueue-enqueue)[nuwber/rabbitevents

The Nuwber RabbitEvents package

120515.8k3](/packages/nuwber-rabbitevents)[prolic/humus-amqp

PHP-AMQP library with RabbitMQ Extensions

76205.4k5](/packages/prolic-humus-amqp)[webtoucher/yii2-amqp

Yii 2 extension wrapper to communicate with RabbitMQ server via AMQP. Based on videlalvaro/php-amqplib.

60133.5k1](/packages/webtoucher-yii2-amqp)[c-datculescu/amqp-base

Allows easy declaration and management of complex AMQP configurations

1268.1k](/packages/c-datculescu-amqp-base)

PHPackages © 2026

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