PHPackages                             mmanos/laravel-localpushqueue - 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. mmanos/laravel-localpushqueue

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

mmanos/laravel-localpushqueue
=============================

A local push queue driver for Laravel 4.

v1.0.0(11y ago)1840MITPHPPHP &gt;=5.3.0

Since Feb 24Pushed 11y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Local push queue driver for Laravel 4
=====================================

[](#local-push-queue-driver-for-laravel-4)

This package provides a local laravel queue driver that will open a non-blocking connection to itself, thus offloading the actuall processing of a job.

Limitations

- Retying failed attempts does not work
- Delayed jobs are not delayed and execute immediately

Installation Via Composer
-------------------------

[](#installation-via-composer)

Add this to you composer.json file, in the require object:

```
"mmanos/laravel-localpushqueue": "dev-master"
```

After that, run composer install to install the package.

Add the service provider to `app/config/app.php`, within the `providers` array.

```
'providers' => array(
	// ...
	'Mmanos\LocalPushQueue\LocalPushQueueServiceProvider',
)
```

Configuration
-------------

[](#configuration)

Update the existing `queue.php` config file and add a new `local` array to the existing `connections` array:

```
'connections' => array(
	//...
	'local' => array(
		'driver' => 'localpush',
		'method' => 'POST',
		'url'    => url('queue/receive'),
	),
),
```

Then update the `default` queue driver to be `local`.

Next, ensure you have a route defined to listen for your pushed jobs:

```
Route::post('queue/receive', function() { return Queue::marshal(); });
```

Finally, since this driver makes a request to the URL used by your application, make sure your server can resolve the hostname defined in the `url` config value. On a dev server you may need to ensure your local hostname is in your machine's `hosts` file.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

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

4093d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/972055?v=4)[Mark Manos](/maintainers/mmanos)[@mmanos](https://github.com/mmanos)

---

Top Contributors

[![mmanos](https://avatars.githubusercontent.com/u/972055?v=4)](https://github.com/mmanos "mmanos (2 commits)")

---

Tags

laravelpushqueuelocal

### Embed Badge

![Health badge](/badges/mmanos-laravel-localpushqueue/health.svg)

```
[![Health](https://phpackages.com/badges/mmanos-laravel-localpushqueue/health.svg)](https://phpackages.com/packages/mmanos-laravel-localpushqueue)
```

###  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)

PHPackages © 2026

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