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

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

oriceon/laravel-async-queue
===========================

Async Queue Driver for Laravel (Push to background)

2.0.2(3mo ago)0255MITPHPPHP &gt;=8

Since Jan 25Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/oriceon/laravel-async-queue)[ Packagist](https://packagist.org/packages/oriceon/laravel-async-queue)[ RSS](/packages/oriceon-laravel-async-queue/feed)WikiDiscussions main Synced today

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

Laravel 9+ Async Queue Driver
=============================

[](#laravel-9-async-queue-driver)

Push a function/closure to the background.
------------------------------------------

[](#push-a-functionclosure-to-the-background)

Just like the 'sync' driver, this is not a real queue driver. It is always fired immediatly. The only difference is that the closure is sent to the background without waiting for the response. This package is more usable as an alternative for running incidental tasks in the background, without setting up a 'real' queue driver.

> **Note:** This is using the DatabaseQueue, so make sure you set that up first, including migrations.

### Install

[](#install)

Require the latest version of this package with Composer

```
composer require oriceon/laravel-async-queue

```

You need to create the migration table for queues and run it.

```
$ php artisan queue:table
$ php artisan migrate

```

You should now be able to use the async driver in config/queue.php. Use the same config as for the database, but use async as driver.

```
'connections' => [
    ...
    'async' => [
        'driver' => 'async',
        'table'  => 'jobs',
        'queue'  => 'default',
        'expire' => 60,
    ],
    ...
}

```

Set the default to `async`, either by changing to config or setting `QUEUE_DRIVER` in your `.env` file to `async`.

> Note: By default, `php` is used as the binary path to PHP. You can change this by adding the `binary` option to the queue config. You can also add extra arguments (for HHVM for example)

```
'connections' => [
    ...
    'async' => [
        'driver'      => 'async',
        'table'       => 'jobs',
        'queue'       => 'default',
        'expire'      => 60,
        'binary'      => 'php',
        'binary_args' => '',
    ],
    ...
}

```

It should work the same as the sync driver, so no need to run a queue listener. Downside is that you cannot actually queue or plan things. Queue::later() is also fired directly. For more info see

Credits to main author
======================

[](#credits-to-main-author)

Fwork package : [barryvdh/laravel-async-queue](https://github.com/barryvdh/laravel-async-queue)

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance78

Regular maintenance activity

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

Every ~285 days

Total

5

Last Release

115d ago

Major Versions

1.1 → 2.0.02024-03-12

### Community

Maintainers

![](https://www.gravatar.com/avatar/8a9692bf91992f959404944cecec65e1b68b21491ec3c5642e67e47a836d9ea8?d=identicon)[oriceon](/maintainers/oriceon)

---

Top Contributors

[![oriceon](https://avatars.githubusercontent.com/u/358823?v=4)](https://github.com/oriceon "oriceon (5 commits)")

---

Tags

asynclaravelqueuebackground

### Embed Badge

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

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

###  Alternatives

[laravel/sail

Docker files for running a basic Laravel application.

1.9k205.7M1.3k](/packages/laravel-sail)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M200](/packages/laravel-ai)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M151](/packages/laravel-mcp)[illuminate/queue

The Illuminate Queue package.

21332.6M1.6k](/packages/illuminate-queue)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

44855.7k](/packages/harris21-laravel-fuse)[laravel/surveyor

Static analysis tool for Laravel applications.

86121.4k13](/packages/laravel-surveyor)

PHPackages © 2026

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