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

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

studentjason/laravel-async-queue
================================

Async Queue Driver for Laravel/Oracle (Push to background)

v0.3.0(11y ago)02.6k↓50%MITPHPPHP &gt;=5.3.0

Since Apr 29Pushed 11y ago1 watchersCompare

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

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

Laravel 4/5 Async Queue Driver
==============================

[](#laravel-45-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:** If you are coming from 0.1.0 (or dev-master), you will need to run the migrations, since the new versions uses a database to store the queue.

### Install

[](#install)

Require the latest version of this package with Composer

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

```

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

```
'Barryvdh\Queue\AsyncServiceProvider',

```

You need to run the migrations for this package

```
$ php artisan migrate --package="barryvdh/laravel-async-queue"

```

Or publish them, so they are copied to your regular migrations

```
$ php artisan migrate:publish barryvdh/laravel-async-queue

```

You should now be able to use the async driver in config/queue.php

```
'default' => 'async',

'connections' => array(
    ...
    'async' => array(
        'driver' => 'async',
    ),
    ...
}

```

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',
        '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, but just runs `sleep($delay)` in background.. For more info see

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 77.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

Every ~70 days

Total

4

Last Release

4183d ago

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

v0.2.0PHP &gt;=5.4.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/462434?v=4)[studentjason](/maintainers/studentjason)[@studentjason](https://github.com/studentjason)

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (42 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (12 commits)")

---

Tags

asynclaravelqueuebackground

### Embed Badge

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

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