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

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

anishbangalore/laravel-async-queue
==================================

Async Queue Driver for Laravel (Push to background) Cloned from https://github.com/barryvdh/laravel-async-queue

v0.1.0(6y ago)020MITPHPPHP &gt;=7

Since Sep 11Pushed 6y ago1 watchersCompare

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

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

Laravel 5.5 to 6.0 Async Queue Driver
=====================================

[](#laravel-55-to-60-async-queue-driver)

(This repository is a clone from )

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

```

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

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

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 64.8% 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

Unknown

Total

1

Last Release

2434d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/cf587fb50a4905ec52ea2107bf2dcff29dfecdad74c2fb94cf170ca2b2172561?d=identicon)[anishbangalore](/maintainers/anishbangalore)

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (79 commits)")[![anishbangalore](https://avatars.githubusercontent.com/u/33906834?v=4)](https://github.com/anishbangalore "anishbangalore (19 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 (5 commits)")[![gurkov](https://avatars.githubusercontent.com/u/7983036?v=4)](https://github.com/gurkov "gurkov (3 commits)")[![frdteknikelektro](https://avatars.githubusercontent.com/u/14815819?v=4)](https://github.com/frdteknikelektro "frdteknikelektro (1 commits)")[![crlcu](https://avatars.githubusercontent.com/u/1661844?v=4)](https://github.com/crlcu "crlcu (1 commits)")[![lachieh](https://avatars.githubusercontent.com/u/1687902?v=4)](https://github.com/lachieh "lachieh (1 commits)")[![chrissm79](https://avatars.githubusercontent.com/u/1976169?v=4)](https://github.com/chrissm79 "chrissm79 (1 commits)")

---

Tags

asynclaravelqueuebackground

### Embed Badge

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

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