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

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

jdornbusch/queue-adapters
=========================

Module that wraps the zend-queue library allowing access via the service manager

032PHP

Since Apr 26Pushed 12y agoCompare

[ Source](https://github.com/joachimdo/zf2-queueing-factory-module)[ Packagist](https://packagist.org/packages/jdornbusch/queue-adapters)[ RSS](/packages/jdornbusch-queue-adapters/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

zf2-queueing-factory-module
===========================

[](#zf2-queueing-factory-module)

> This module only provides factories to give access to the queueing functionalities via Zend Service Manager. For now, it is limited to Activemq.

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

[](#installation)

Just add QueueAdapters to the listed module names, rename and copy the module.queue-adapters.local.php.dist to your application config autoload directory and fill it, e.g. :

```
return array (
		"queue-adapters" => array(
				//inform the controller plugin,
				// "default" =>"activemq",
				"activemq" => array (
						//"host" => "127.0.0.1",
						//"port" => "61613",
						// "scheme" => "tcp",

				)
		)

);
```

Usage
-----

[](#usage)

An instance of ZendQueue\\Queue with the ActivMQ adapter is now available :

- either as a service

```
$service = $this->getServiceLocator()->get("activemq");
//write to queue
$service->createQueue("test");
$service->send("Hello World n°1");
//read from queue
$iterator=$service->receive();
$current=$iterator->current();
```

- or as a plugin manager if you want to access it from a Controller

```
//write to queue
$this->queue()->createQueue("test");
$this->queue()->send("Hello World n°1");
//read from queue
$iterator=$this->queue()->receive();
$current=$iterator->current();
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/2aaa194c045e9eca9fb5d2fcba8a23612a21f6d1f73707ecff6052984bf23257?d=identicon)[joachimdo](/maintainers/joachimdo)

---

Top Contributors

[![jdp1ps](https://avatars.githubusercontent.com/u/116366856?v=4)](https://github.com/jdp1ps "jdp1ps (22 commits)")

### Embed Badge

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

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

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.3M26](/packages/league-geotools)[amphp/parser

A generator parser to make streaming parsers simple.

14952.8M16](/packages/amphp-parser)[amphp/serialization

Serialization tools for IPC and data storage in PHP.

13451.1M18](/packages/amphp-serialization)[enqueue/enqueue

Message Queue Library

19820.0M56](/packages/enqueue-enqueue)[deliciousbrains/wp-background-processing

WP Background Processing can be used to fire off non-blocking asynchronous requests or as a background processing tool, allowing you to queue tasks.

1.1k409.8k6](/packages/deliciousbrains-wp-background-processing)[react/async

Async utilities and fibers for ReactPHP

2238.8M170](/packages/react-async)

PHPackages © 2026

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