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

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

lumphp/laravel-queue
====================

The Illuminate Queue package.

v8.36.2(4y ago)0353MITPHPPHP ^7.3|^8.0

Since Jun 16Pushed 4y agoCompare

[ Source](https://github.com/lumphp/laravel-queue)[ Packagist](https://packagist.org/packages/lumphp/laravel-queue)[ Docs](https://laravel.com)[ RSS](/packages/lumphp-laravel-queue/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (11)Versions (3)Used By (3)

Illuminate Queue
----------------

[](#illuminate-queue)

The Laravel 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 Laravel framework as easy as possible.

```
use Illuminate\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 [Laravel framework documentation](https://laravel.com/docs).

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 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

Every ~461 days

Total

2

Last Release

1746d ago

Major Versions

v7.1.3 → v8.36.22021-09-20

PHP version history (2 changes)v7.1.3PHP ^7.2.5

v8.36.2PHP ^7.3|^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/65116826?v=4)[lumphp](/maintainers/lumphp)[@lumphp](https://github.com/lumphp)

---

Top Contributors

[![lumphp2020](https://avatars.githubusercontent.com/u/65116555?v=4)](https://github.com/lumphp2020 "lumphp2020 (3 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k543.8M19.9k](/packages/laravel-framework)[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k95.4M300](/packages/laravel-horizon)[illuminate/queue

The Illuminate Queue package.

21332.6M1.6k](/packages/illuminate-queue)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M733](/packages/sylius-sylius)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)

PHPackages © 2026

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