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

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

brandoriented/laravel-async-queue
=================================

Async Queue Driver for Laravel (Push to background)

v0.7.0(8y ago)08MITPHPPHP &gt;=5.6.4

Since Apr 29Pushed 8y agoCompare

[ Source](https://github.com/BrandOriented/laravel-async-queue)[ Packagist](https://packagist.org/packages/brandoriented/laravel-async-queue)[ RSS](/packages/brandoriented-laravel-async-queue/feed)WikiDiscussions master Synced 1mo ago

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

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

[](#laravel-55-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/barryvdh/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/barryvdh/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 barryvdh/laravel-async-queue

```

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

```
Barryvdh\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

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 78.6% 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 ~110 days

Recently: every ~99 days

Total

13

Last Release

3064d ago

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

v0.2.0PHP &gt;=5.4.0

v0.6.0PHP &gt;=5.6.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/233d0b00251744484000748877ee4d8d47e00446fa86a8cf9155e6f4d6b7ef48?d=identicon)[Effiana](/maintainers/Effiana)

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (77 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (12 commits)")[![gurkov](https://avatars.githubusercontent.com/u/7983036?v=4)](https://github.com/gurkov "gurkov (3 commits)")[![oriceon](https://avatars.githubusercontent.com/u/358823?v=4)](https://github.com/oriceon "oriceon (3 commits)")[![crlcu](https://avatars.githubusercontent.com/u/1661844?v=4)](https://github.com/crlcu "crlcu (1 commits)")[![chrissm79](https://avatars.githubusercontent.com/u/1976169?v=4)](https://github.com/chrissm79 "chrissm79 (1 commits)")[![lachieh](https://avatars.githubusercontent.com/u/1687902?v=4)](https://github.com/lachieh "lachieh (1 commits)")

---

Tags

asynclaravelqueuebackground

### Embed Badge

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

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