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

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

novaday-co/laravel-async-queue
==============================

Async Queue Driver for Laravel (Push to background)

v0.7.5(4y ago)367MITPHPPHP &gt;=7

Since Apr 29Pushed 4y agoCompare

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

READMEChangelogDependencies (3)Versions (19)Used By (0)

Laravel Async Queue Driver
==========================

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

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

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

### For Laravel 5.4, check the [0.6 branch](https://github.com/NovadayCo/laravel-async-queue/tree/v0.6.0)

[](#for-laravel-54-check-the-06-branch)

### For Laravel 5.3, check the [0.5 branch](https://github.com/NovadayCo/laravel-async-queue/tree/v0.5.0)

[](#for-laravel-53-check-the-05-branch)

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 NovadayCo/laravel-async-queue

```

Add the Service Provider to the providers array in config/app.php

```
NovadayCo\Queue\AsyncServiceProvider::class,

```

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' => array(
    ...
    'async' => array(
        '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' => array(
    ...
    'async' => array(
        '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

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 71.1% 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 ~151 days

Recently: every ~278 days

Total

18

Last Release

1818d ago

PHP version history (4 changes)v0.1.0PHP &gt;=5.3.0

v0.2.0PHP &gt;=5.4.0

v0.6.0PHP &gt;=5.6.4

v0.7.2PHP &gt;=7

### Community

Maintainers

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

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (81 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (12 commits)")[![oriceon](https://avatars.githubusercontent.com/u/358823?v=4)](https://github.com/oriceon "oriceon (7 commits)")[![faridfr](https://avatars.githubusercontent.com/u/9497923?v=4)](https://github.com/faridfr "faridfr (6 commits)")[![gurkov](https://avatars.githubusercontent.com/u/7983036?v=4)](https://github.com/gurkov "gurkov (3 commits)")[![chrissm79](https://avatars.githubusercontent.com/u/1976169?v=4)](https://github.com/chrissm79 "chrissm79 (1 commits)")[![crlcu](https://avatars.githubusercontent.com/u/1661844?v=4)](https://github.com/crlcu "crlcu (1 commits)")[![hosein-xz](https://avatars.githubusercontent.com/u/25554655?v=4)](https://github.com/hosein-xz "hosein-xz (1 commits)")[![lachieh](https://avatars.githubusercontent.com/u/1687902?v=4)](https://github.com/lachieh "lachieh (1 commits)")[![frdteknikelektro](https://avatars.githubusercontent.com/u/14815819?v=4)](https://github.com/frdteknikelektro "frdteknikelektro (1 commits)")

---

Tags

asynclaravelqueuebackground

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/novaday-co-laravel-async-queue/health.svg)](https://phpackages.com/packages/novaday-co-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)[mayconbordin/l5-stomp-queue

Stomp Queue Driver for Laravel 5

121.1k](/packages/mayconbordin-l5-stomp-queue)

PHPackages © 2026

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