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(2mo ago)0233MITPHPPHP &gt;=8

Since Jan 25Pushed 2mo 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 1mo ago

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

41

—

FairBetter than 89% of packages

Maintenance86

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

68d 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

[harris21/laravel-fuse

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

3786.5k](/packages/harris21-laravel-fuse)[pmatseykanets/artisan-beans

Easily manage your Beanstalkd job queues right from the Laravel artisan command

4482.1k](/packages/pmatseykanets-artisan-beans)[tochka-developers/queue-promises

Promises for Laravel queue jobs

1912.3k](/packages/tochka-developers-queue-promises)

PHPackages © 2026

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