PHPackages                             alchemy/queue-component - 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. alchemy/queue-component

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

alchemy/queue-component
=======================

Message queue component

0.1.6(3y ago)258.9k↑1153.8%1[1 issues](https://github.com/alchemy-fr/queue-component/issues)2MITPHPPHP &gt;=5.5

Since Mar 27Pushed 3y ago4 watchersCompare

[ Source](https://github.com/alchemy-fr/queue-component)[ Packagist](https://packagist.org/packages/alchemy/queue-component)[ RSS](/packages/alchemy-queue-component/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (7)Dependencies (5)Versions (8)Used By (2)

queue-component
===============

[](#queue-component)

[![License](https://camo.githubusercontent.com/09f10aa5501b7e90b281c7c19bec7773b005e334aa695b914f9bf89e961e8d40/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f616c6368656d792f71756575652d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://github.com/alchemy-fr/queue-component/LICENSE)[![Packagist](https://camo.githubusercontent.com/186fbf50c233fc57b3f9f7c36d59b028f27354d9a65929396388586ccbb4b506/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616c6368656d792f71756575652d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/alchemy/queue-component)[![Travis](https://camo.githubusercontent.com/257962b3065dc545ccf142ed08fd617657a14313d7d5f834c8de17f04705e9f0/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f616c6368656d792d66722f71756575652d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/alchemy-fr/queue-component)[![Coverage](https://camo.githubusercontent.com/5acf2da67882024ad778cbf4db0a433a68161f0f35649e2b82486ecc7be665e8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f616c6368656d792d66722f71756575652d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/alchemy-fr/queue-component/?branch=master)[![Scrutinizer](https://camo.githubusercontent.com/70fff4e513f7c8cae5b6eab82be2671a5aa7cb4c898295842878e07b8b5d3443/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f616c6368656d792d66722f71756575652d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/alchemy-fr/queue-component/)[![Packagist](https://camo.githubusercontent.com/7f076b3a7a3186e425ed29e2670744684a89dd0606d64465087a1591233ba134/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616c6368656d792f71756575652d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/alchemy/queue-component/stats)

alchemy/queue-component is a library providing a minimalist publish/subscribe abstraction over AMQP

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

[](#installation)

The only supported installation method is via [Composer](https://getcomposer.org). Run the following command to require the package in your project:

```
composer require alchemy/queue-component

```

Quickstart guide
----------------

[](#quickstart-guide)

```
// Note: the following array contains all available parameters and their default values
// Every configuration key is optional, and its default value used when not defined in parameters
$parameters = [
    'host' => 'localhost',
    'vhost' => '/',
    'port' => 5672,
    'user' => 'guest',
    'password' => 'guest',
    'exchange' => 'alchemy-exchange',
    'dead-letter-exchange' => 'alchemy-dead-exchange',
    'queue' => 'alchemy-queue'
];

$factory = Alchemy\Queue\Amqp\AmqpMessageQueueFactory::create($parameters);

// Publish a message
$factory->getNamedQueue('my-queue')->publish(new Message('message body', 'correlation-id'));

// Consume next message in queue
$handler = new Alchemy\Queue\NullMessageHandler();
$resolver = new Alchemy\Queue\MessageHandlerResolver($handler);
$factory->getNamedQueue('my-queue')->handle($resolver);
```

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 84.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 ~406 days

Recently: every ~577 days

Total

7

Last Release

1314d ago

### Community

Maintainers

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

![](https://www.gravatar.com/avatar/ee4bb6d5bcc2f9456b41090151c1c8fb288e8949994d965b03b7e25648d663f4?d=identicon)[nmaillat](/maintainers/nmaillat)

---

Top Contributors

[![aztech-dev](https://avatars.githubusercontent.com/u/93562568?v=4)](https://github.com/aztech-dev "aztech-dev (16 commits)")[![xrousset78800](https://avatars.githubusercontent.com/u/3024133?v=4)](https://github.com/xrousset78800 "xrousset78800 (2 commits)")[![moctardiouf](https://avatars.githubusercontent.com/u/1235702?v=4)](https://github.com/moctardiouf "moctardiouf (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/alchemy-queue-component/health.svg)

```
[![Health](https://phpackages.com/badges/alchemy-queue-component/health.svg)](https://phpackages.com/packages/alchemy-queue-component)
```

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k543.8M20.1k](/packages/laravel-framework)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M738](/packages/sylius-sylius)[symfony/messenger

Helps applications send and receive messages to/from other applications or via message queues

1.1k132.9M1.5k](/packages/symfony-messenger)[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

23.9k69.5k](/packages/grumpydictator-firefly-iii)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

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