PHPackages                             falconavs/humus-amqp-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. falconavs/humus-amqp-bundle

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

falconavs/humus-amqp-bundle
===========================

Integrates the HumusAmqp library into Symfony

v2.2.0(4y ago)047MITPHP ^7.4 || ^8.0

Since Jan 31Pushed 4y agoCompare

[ Source](https://github.com/falconavs/HumusAmqpBundle)[ Packagist](https://packagist.org/packages/falconavs/humus-amqp-bundle)[ RSS](/packages/falconavs-humus-amqp-bundle/feed)WikiDiscussions switch\_to\_services Synced 2d ago

READMEChangelogDependencies (6)Versions (32)Used By (0)

HumusAmqpBundle
===============

[](#humusamqpbundle)

[![](https://github.com/genhoi/HumusAmqpBundle/workflows/CI/badge.svg?branch=master)](https://github.com/genhoi/HumusAmqpBundle/workflows/CI/badge.svg?branch=master)[![](https://camo.githubusercontent.com/08aec9a05ca2b6018b7dae38e6ef57dc505b771b304dc90f47f9f5f62fcad995/68747470733a2f2f636f6465636f762e696f2f67682f67656e686f692f48756d7573416d717042756e646c652f6272616e63682f6d61737465722f6772617068732f62616467652e7376673f6272616e63683d6d6173746572)](https://camo.githubusercontent.com/08aec9a05ca2b6018b7dae38e6ef57dc505b771b304dc90f47f9f5f62fcad995/68747470733a2f2f636f6465636f762e696f2f67682f67656e686f692f48756d7573416d717042756e646c652f6272616e63682f6d61737465722f6772617068732f62616467652e7376673f6272616e63683d6d6173746572)

About
-----

[](#about)

This bundle integrates the [HumusAmqp](https://github.com/prolic/HumusAmqp) library into Symfony.

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

[](#installation)

Require the bundle and its dependencies with composer:

```
$ composer require genhoi/humus-amqp-bundle
```

### For Symfony Framework &gt;= 4.3

[](#for-symfony-framework--43)

Register the bundle:

```
// app/AppKernel.php

public function registerBundles()
{
    $bundles = [
        new Humus\AmqpBundle\HumusAmqpBundle(),
    ];
}
```

### For a console application that uses Symfony Console, Dependency Injection and Config components

[](#for-a-console-application-that-uses-symfony-console-dependency-injection-and-config-components)

Register the extension:

```
use Humus\AmqpBundle\DependencyInjection\HumusAmqpExtension;

// ...

$containerBuilder->registerExtension(new HumusAmqpExtension());
```

Usage
-----

[](#usage)

Add the `humus` section in your configuration file:

```
humus:
  amqp:
    driver: amqp-extension
    connection:
      default:
        vhost: "/"
        login: guest
        password: guest
        host: rabbitmq
        port: 5672
        connect_timeout: 10
        read_timeout: 10
        write_timeout: 10
    exchange:
      test_exchange:
        connection: default
        durable: true
        type: direct
      test_rpc_client:
        connection: default
        type: direct
      test_rpc_server:
        connection: default
        type: direct
    queue:
      test_queue:
        connection: default
        durable: true
        auto_setup_fabric: true
        auto_setup_exchanges: true
        arguments:
          x-dead-letter-exchange: test_exchange
          x-dead-letter-routing-key: delayed
        exchanges:
          test_exchange:
            routing_keys:
            - ''
            - key-1
      test_queue_delayed:
        connection: default
        durable: true
        auto_setup_fabric: true
        auto_setup_exchanges: true
        exchanges:
          test_exchange:
            routing_keys:
            - delayed
      test_rpc_client:
        connection: default
        exchanges:
          test_rpc_client: []
      test_rpc_server:
        connection: default
        name: test_rpc_server
        exchanges:
          test_rpc_server: []
    callback_consumer:
      test_queue_consumer:
        queue: test_queue
        delivery_callback: HumusTest\AmqpBundle\Functional\Callback\ConsumerDeliveryCallback
        error_callback: HumusTest\AmqpBundle\Functional\Callback\ConsumerErrorCallback
        logger: monolog
        qos:
          prefetch_count: 3
          prefetch_size: 0
    producer:
      test_producer:
        type: json
        exchange: test_exchange
    json_rpc_server:
      test_rpc_server:
        delivery_callback: HumusTest\AmqpBundle\Functional\Callback\RpcDeliveryCallback
        idle_timeout: 10
        queue: test_rpc_server
    json_rpc_client:
      test_rpc_client:
        queue: test_rpc_client
        exchanges:
        - test_rpc_server
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity73

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

Recently: every ~142 days

Total

27

Last Release

1639d ago

Major Versions

v0.12 → v1.0.02020-03-29

v1.1.0 → v2.0.02020-03-29

v1.1.1 → v2.0.22020-04-24

v1.0.2 → v2.1.02020-04-24

v1.2.1 → v2.1.12021-08-01

PHP version history (4 changes)v0.1PHP ^7.1.3

v1.1.0PHP ^7.2

v2.0.0PHP ^7.4

v2.1.1PHP ^7.4 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/8a96ad7090be3d842d3918c49320a53a8c0a6be4fdf5808dc8b7d44e51c43bb7?d=identicon)[falconavs](/maintainers/falconavs)

---

Top Contributors

[![genhoi](https://avatars.githubusercontent.com/u/8273730?v=4)](https://github.com/genhoi "genhoi (60 commits)")

---

Tags

messagesymfonyqueuerabbitmqAMQPhumusamqp

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/falconavs-humus-amqp-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/falconavs-humus-amqp-bundle/health.svg)](https://phpackages.com/packages/falconavs-humus-amqp-bundle)
```

###  Alternatives

[php-amqplib/rabbitmq-bundle

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

1.3k20.1M65](/packages/php-amqplib-rabbitmq-bundle)

PHPackages © 2026

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