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

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

equip/queue
===========

The better queueing library

0.11.0(9y ago)767.1k1[2 issues](https://github.com/equip/queue/issues)MITPHPPHP &gt;=5.6

Since Jul 6Pushed 9y ago2 watchersCompare

[ Source](https://github.com/equip/queue)[ Packagist](https://packagist.org/packages/equip/queue)[ RSS](/packages/equip-queue/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (8)Versions (15)Used By (0)

Equip Queue
===========

[](#equip-queue)

[![Latest Stable Version](https://camo.githubusercontent.com/a4191f71bf5c1d209387ed7d1717e943decd442af2e3a5cfa2ba324662b375a0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65717569702f71756575652e737667)](https://packagist.org/packages/equip/queue)[![License](https://camo.githubusercontent.com/e3bfff76d3a448a11dac5f05137e3d17a54d1a83b6960092f983ca897b8f948f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f65717569702f71756575652e737667)](https://github.com/equip/queue/blob/master/LICENSE)[![Build Status](https://camo.githubusercontent.com/316542a303d44233955a9189825efc63b8f33e8a0cf65d0928b58b0a50405877/68747470733a2f2f7472617669732d63692e6f72672f65717569702f71756575652e737667)](https://travis-ci.org/equip/queue)[![Code Coverage](https://camo.githubusercontent.com/c504bf2427d37ac48035727b4a0e7899fe6fc6822616c40d057ee420beabb3b8/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f65717569702f71756575652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/equip/queue/?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/6a849c9c775697f25a2d4ce5a0fa0493166229adff18949dc6e4a9086bee1fed/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f65717569702f71756575652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/equip/queue/?branch=master)

Details
-------

[](#details)

##### Available Drivers

[](#available-drivers)

- Redis

Missing the driver you want? [Create it!](#creating-a-driver)

### Creating A Consumer

[](#creating-a-consumer)

```
// Instantiate Redis
$redis = new Redis;
$redis->connect('127.0.0.1');

// Instantiate the Redis driver
$driver = new Equip\Queue\Driver\RedisDriver($redis);

// Instantiate the event class (which uses league/event)
$emitter = new League\Event\Emitter;
$event = new Equip\Queue\Event($emitter);

// Instantiate the command factory
$injector = new Auryn\Injector;
$factory = new Equip\Queue\Command\AurynCommandFactory($injector);

// Instantiate the Worker class
$worker = new Equip\Queue\Worker($driver, $event, $factory);

// Kick off the consumer
$worker->consume($queue);
```

Here's an [example consumer](https://github.com/equip/queue/blob/master/example/consumer.php)

### Creating A Producer

[](#creating-a-producer)

```
// Instantiate Redis
$redis = new Redis;
$redis->connect('127.0.0.1');

// Instantiate the Redis driver
$driver = new Equip\Queue\Driver\RedisDriver($redis);

// Instantiate the Queue class
$queue = new Queue($driver);
```

Here's an [example producer](https://github.com/equip/queue/blob/master/example/producer.php)

### Adding A Message To The Queue

[](#adding-a-message-to-the-queue)

```
$result = $queue->add($queue, Command::class, new Options);
```

A boolean (`$result`) is returned which contains the status of the push onto the queue.

### Creating A Driver

[](#creating-a-driver)

Creating a driver is as simple as implementing the [DriverInterface](https://github.com/equip/queue/blob/master/src/Driver/DriverInterface.php).

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance14

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 93.8% 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 ~14 days

Recently: every ~28 days

Total

14

Last Release

3459d ago

### Community

Maintainers

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

![](https://avatars.githubusercontent.com/u/831646?v=4)[Adam Meech](/maintainers/ameech)[@ameech](https://github.com/ameech)

---

Top Contributors

[![ameech](https://avatars.githubusercontent.com/u/831646?v=4)](https://github.com/ameech "ameech (15 commits)")[![sctape](https://avatars.githubusercontent.com/u/510704?v=4)](https://github.com/sctape "sctape (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[symfony/http-kernel

Provides a structured process for converting a Request into a Response

8.1k869.4M8.5k](/packages/symfony-http-kernel)[symfony/messenger

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

1.1k132.9M1.4k](/packages/symfony-messenger)[symfony/cache

Provides extended PSR-6, PSR-16 (and tags) implementations

4.2k373.5M3.2k](/packages/symfony-cache)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.6k38.2k](/packages/matomo-matomo)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k13](/packages/tempest-framework)[symfony/amazon-sqs-messenger

Symfony Amazon SQS extension Messenger Bridge

4614.0M22](/packages/symfony-amazon-sqs-messenger)

PHPackages © 2026

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