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

ActiveCraft-plugin[Queues &amp; Workers](/categories/queues)

flipboxdigital/queue
====================

Simple queue

1.0.0-beta.3(9y ago)12.4kPHPPHP &gt;=7.0

Since Jun 7Pushed 9y ago2 watchersCompare

[ Source](https://github.com/flipbox/queue)[ Packagist](https://packagist.org/packages/flipboxdigital/queue)[ RSS](/packages/flipboxdigital-queue/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (4)Dependencies (4)Versions (6)Used By (0)

Queue system for Craft CMS
==========================

[](#queue-system-for-craft-cms)

[![Latest Version](https://camo.githubusercontent.com/0d9eca08c37bda0350b54898d2942b4bf7d1ef61d5c313d6ae7e74eb419042c8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f666c6970626f782f71756575652e7376673f7374796c653d666c61742d737175617265)](https://github.com/flipbox/queue/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/1b443f23f729d8115dba0fd7d9a2db432d9d50b621a10eb0d11e465f9bc3e104/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f666c6970626f782f71756575652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/flipbox/queue)[![Coverage Status](https://camo.githubusercontent.com/4e5afe9ab4aa7af161765e14a848c4f013a3fc2a08258d5888170a3a4eb9a066/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f666c6970626f782f71756575652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/flipbox/queue/code-structure)[![Quality Score](https://camo.githubusercontent.com/6d68efd3af0cfd4cd40533e0bb130aec48c576160ebabd133b93916ac47acf31/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f666c6970626f782f71756575652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/flipbox/queue)[![Total Downloads](https://camo.githubusercontent.com/7975c902fa4d388422fbde5110b7eff51056a4874f388f4908aafc00ff637b5d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666c6970626f786469676974616c2f71756575652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flipboxdigital/queue)

This package provides a robust queue system for [Craft CMS](https://craftcms.com).

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

[](#installation)

To install, use composer:

```
composer require flipboxdigital/queue
```

In the Craft Control Panel, go to Settings → Plugins and click the "Install" button for **Queue**.

Usage
-----

[](#usage)

By default, multiple queues are supported. In order to add a new queue, register it via an event in your `Plugin::init()`:

```
yii\base\Event::on(
    flipbox\queue\queues\MultipleByEvent::class,
    flipbox\queue\queues\MultipleByEvent::EVENT_REGISTER_QUEUES,
    function(flipbox\queue\events\RegisterQueues $event) {
        $event->queues[] = [
            'class' => flipbox\queue\queues\Sqs::class,
            'url' => 'https://sqs.us-west-2.amazonaws.com/1234567890/xxxxxx',
            'config' => [
                'region' => 'us-west-2',
                'version' => 'latest'
            ]
        ];
    }
);
```

To post a new job (extend `flipbox\queue\jobs\AbstractJob`)

```
$job = new Your\Test\Job();

Queue::getInstance()->getQueue()->post($job);
```

To run a job:

```
$job = Queue::getInstance()->getQueue()->fetch();

if ($job) {
    Queue::getInstance()->getQueue()->run($job);
}
```

Testing
-------

[](#testing)

```
$ ./vendor/bin/phpunit
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/flipbox/queue/blob/master/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Flipbox Digital](https://github.com/flipbox)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/flipbox/queue/blob/master/LICENSE) for more information.

###  Health Score

26

—

LowBetter than 40% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% 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 ~18 days

Total

4

Last Release

3291d ago

### Community

Maintainers

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

---

Top Contributors

[![nateiler](https://avatars.githubusercontent.com/u/1892443?v=4)](https://github.com/nateiler "nateiler (21 commits)")[![dsmrt](https://avatars.githubusercontent.com/u/1995478?v=4)](https://github.com/dsmrt "dsmrt (3 commits)")

---

Tags

queueyii2craftcmsflipbox

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[spicyweb/craft-neo

A Matrix-like field type with block hierarchy

393818.3k12](/packages/spicyweb-craft-neo)[craftcms/commerce

Craft Commerce

239426.5k207](/packages/craftcms-commerce)[verbb/formie

The most user-friendly forms plugin for Craft.

101400.6k76](/packages/verbb-formie)[ostark/craft-async-queue

A queue handler that moves queue execution to a non-blocking background process

95293.6k9](/packages/ostark-craft-async-queue)[craftcms/ckeditor

Edit rich text content in Craft CMS using CKEditor.

47410.4k84](/packages/craftcms-ckeditor)[verbb/hyper

A user-friendly links field for Craft.

24153.5k14](/packages/verbb-hyper)

PHPackages © 2026

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