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

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

quantaforge/queue
=================

The QuantaForge Queue package.

v1.0.0(2y ago)003proprietaryPHPPHP ^8.1

Since Oct 14Pushed 2y agoCompare

[ Source](https://github.com/QuantaForge/queue)[ Packagist](https://packagist.org/packages/quantaforge/queue)[ RSS](/packages/quantaforge-queue/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (11)Versions (2)Used By (3)

QuantaForge Queue
-----------------

[](#quantaforge-queue)

The QuantaForge Queue component provides a unified API across a variety of different queue services. Queues allow you to defer the processing of a time consuming task, such as sending an e-mail, until a later time, thus drastically speeding up the web requests to your application.

### Usage Instructions

[](#usage-instructions)

First, create a new Queue `Capsule` manager instance. Similar to the "Capsule" provided for the Eloquent ORM, the queue Capsule aims to make configuring the library for usage outside of the QuantaForge framework as easy as possible.

```
use QuantaForge\Queue\Capsule\Manager as Queue;

$queue = new Queue;

$queue->addConnection([
    'driver' => 'beanstalkd',
    'host' => 'localhost',
    'queue' => 'default',
]);

// Make this Capsule instance available globally via static methods... (optional)
$queue->setAsGlobal();
```

Once the Capsule instance has been registered. You may use it like so:

```
// As an instance...
$queue->push('SendEmail', ['message' => $message]);

// If setAsGlobal has been called...
Queue::push('SendEmail', ['message' => $message]);
```

For further documentation on using the queue, consult the [QuantaForge framework documentation](https://quantaforge.com/docs).

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

947d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b81e693351ecb539161294ecdd4d87cc3e3ee1c10dc8dcb26da09b84713ddb56?d=identicon)[Smisch-dev](/maintainers/Smisch-dev)

---

Top Contributors

[![Smisch-dev](https://avatars.githubusercontent.com/u/82714256?v=4)](https://github.com/Smisch-dev "Smisch-dev (1 commits)")

### Embed Badge

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

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

###  Alternatives

[illuminate/queue

The Illuminate Queue package.

20331.4M1.2k](/packages/illuminate-queue)[jolicode/castor

A lightweight and modern task runner. Automate everything. In PHP.

53541.0k3](/packages/jolicode-castor)[carsguide/lumen-horizon

Commands and code-driven configuration for Lumen queues.

1050.6k](/packages/carsguide-lumen-horizon)[hpwebdeveloper/laravel-failed-jobs

UI for Laravel failed jobs.

183.1k](/packages/hpwebdeveloper-laravel-failed-jobs)

PHPackages © 2026

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