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

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

arko/queue-manager
==================

Callables queue manager

06.6kPHP

Since Jun 26Pushed 11y ago1 watchersCompare

[ Source](https://github.com/numesmat/QueueManager)[ Packagist](https://packagist.org/packages/arko/queue-manager)[ RSS](/packages/arko-queue-manager/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

QueueManagerBundle
==================

[](#queuemanagerbundle)

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

[](#installation)

Install it using composer:

```
composer.phar require arko/queue-manager "dev-master"
```

How to use
----------

[](#how-to-use)

Generally speaking, this component is designed to be used in a singleton style. Supposed that the QueueManager (or any class implementing the QueueManagerInterface) instance will be created once and retrieved later using some DIC like Symfony or Pimple. However, it`s up to you how to use it.

You can create an instance of the queue manager like this:

```
$queueManager = new Arko\QueueManager\QueueManager();
```

From now you can use it to add different actions to the named queues:

```
$queueManager->add(function() {
    // Do something here
}, 'queue_name');

// ...

$queueManager->add(function() {
    // Do something else, maybe somewhere else.
}, 'queue_name');
```

As a first argument to the queue manager add method you can provide any php callable.

Later you will be able to process the queue like this:

```
$queueManager->process('queue_name');
```

After the queue is processed, it will be cleared. Generally speaking, it will be cleared just before the queue is processed. So, nested queues should work just fine.

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community7

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/2427e8005d8ab00d2f03aa9046ebc162fd9297045b1c4a34dde265c3288a4ab3?d=identicon)[lemark](/maintainers/lemark)

---

Top Contributors

[![akozhemiakin](https://avatars.githubusercontent.com/u/752516?v=4)](https://github.com/akozhemiakin "akozhemiakin (8 commits)")

### Embed Badge

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

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

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.6M31](/packages/league-geotools)[illuminate/bus

The Illuminate Bus package.

6046.3M544](/packages/illuminate-bus)[uecode/qpush-bundle

Asynchronous processing for Symfony using Push Queues

1672.5M2](/packages/uecode-qpush-bundle)[belvg/module-sqs

N/A

1544.6k](/packages/belvg-module-sqs)[mayconbordin/l5-stomp-queue

Stomp Queue Driver for Laravel 5

121.1k](/packages/mayconbordin-l5-stomp-queue)

PHPackages © 2026

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