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

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

bokt/flarum-queue
=================

Adds Queues to Flarum

0.1-beta.1(7y ago)1116MITPHP

Since Feb 8Pushed 7y ago1 watchersCompare

[ Source](https://github.com/Bokt/flarum-queue)[ Packagist](https://packagist.org/packages/bokt/flarum-queue)[ RSS](/packages/bokt-flarum-queue/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

Flarum Queue
============

[](#flarum-queue)

This is a helper package for extension developers that adds Laravel Queue ability to Flarum.

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

[](#installation)

Inside your the `composer.json` of your extension add under the require section `bokt/flarum-queue`:

```
  "require": {
    // ..
    "bokt/flarum-queue": "*"
  }
```

Make sure you register the QueueProvider in your `extend.php`:

```
return [
    new \Bokt\Queue\Extend\EnableQueues,
  // .. your code
];
```

Developer instructions
----------------------

[](#developer-instructions)

In your source code you need to resolve the `Illuminate\Queue\QueueManager` or its alias `queue` from the container. This allows you to push jobs into the queue.

```
app()->make('queue')->push(new YouHadOneJob);
```

Test whether your job is queued in the jobs table and by running with the flarum binary:

```
$ php flarum queue:work
```

User instructions
-----------------

[](#user-instructions)

By default the database driver is used. You can override this by providing a queue configuration in your `config.php` under the `queue` key, eg:

```
  'database' => [
    // ..
  ],
  'queue' => [
    'driver' => 'redis',
    'connection' => 'default',
    'queue' => env('REDIS_QUEUE', 'default'),
    'retry_after' => 90,
    'block_for' => null,
  ],
```

This configuration will we be bound under `queue.connections.custom` and set as the default.

> Other drivers are supported, check the [Laravel documentation](https://laravel.com/docs/5.7/queues#driver-prerequisites).

### Database queue

[](#database-queue)

Make sure you add to your user instructions the need to run:

```
$ php flarum queue:tables
```

This will migrate the jobs and failed\_jobs tables into the database.

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

2698d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/504687?v=4)[Daniël Klabbers](/maintainers/Luceos)[@luceos](https://github.com/luceos)

---

Top Contributors

[![luceos](https://avatars.githubusercontent.com/u/504687?v=4)](https://github.com/luceos "luceos (14 commits)")

---

Tags

queueextensionjobsflarumbokt

### Embed Badge

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

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

###  Alternatives

[flarum-lang/russian

Russian language pack for Flarum.

12127.5k](/packages/flarum-lang-russian)[flarum-lang/french

French language pack to localize the Flarum forum software plus its official and third-party extensions.

1936.5k](/packages/flarum-lang-french)[zappzerapp/laravel-ingest

A robust, configuration-driven ETL and data import framework for Laravel. Handles CSV/Excel streaming, queues, validation, and relationships.

1131.1k](/packages/zappzerapp-laravel-ingest)

PHPackages © 2026

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