PHPackages                             armxy/laravel-internal-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. armxy/laravel-internal-queue

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

armxy/laravel-internal-queue
============================

Internal Queue Driver for Laravel (Push to background)

v0.1.7(10y ago)016.8k↓60.5%1MITPHPPHP &gt;=5.3.0

Since Nov 28Pushed 10y ago1 watchersCompare

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

READMEChangelogDependencies (4)Versions (9)Used By (0)

Laravel 4/5 Internal Queue Driver
=================================

[](#laravel-45-internal-queue-driver)

Push a function to the background, run immediately or later.
------------------------------------------------------------

[](#push-a-function-to-the-background-run-immediately-or-later)

Fork from:

This is internal queue which store queue into database. 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.

### Install

[](#install)

Require the latest version of this package with Composer

```
composer require armxy/laravel-internal-queue

```

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

```
'Armxy\Queue\InternalQueueServiceProvider',

```

You need to run the migrations for this package

```
$ php artisan migrate --package="armxy/laravel-internal-queue"

```

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

```
$ php artisan migrate:publish armxy/laravel-internal-queue

```

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

```
'default' => 'internal',

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

```

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(
    ...
    'internal' => array(
        'driver' => 'internal',
        '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

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 61.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 ~37 days

Recently: every ~55 days

Total

8

Last Release

3918d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/412acf04b9216c83cc2d7e1ed2cc90690757b79360c70d56705f0418fd893949?d=identicon)[Armxy](/maintainers/Armxy)

---

Top Contributors

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

---

Tags

asynclaravelqueuebackgroundinternal

### Embed Badge

![Health badge](/badges/armxy-laravel-internal-queue/health.svg)

```
[![Health](https://phpackages.com/badges/armxy-laravel-internal-queue/health.svg)](https://phpackages.com/packages/armxy-laravel-internal-queue)
```

###  Alternatives

[nuwber/rabbitevents

The Nuwber RabbitEvents package

120515.8k3](/packages/nuwber-rabbitevents)

PHPackages © 2026

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