PHPackages                             jcsmith1859/illuminate-resque - 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. jcsmith1859/illuminate-resque

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

jcsmith1859/illuminate-resque
=============================

Illuminate Resque connector for the Laravel Queue class.

1.0.6(10y ago)017MITPHPPHP &gt;=5.4.0

Since Sep 16Pushed 10y agoCompare

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

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

Laravel Resque
--------------

[](#laravel-resque)

This package allows you to connect to Resque when using `Queue`.

This is a fork of awillis13's [laravel-resque](https://github.com/awellis13/laravel-resque) using kamisama's fork of chrisboulton's php-resque.

Requirements
------------

[](#requirements)

- PHP 5.4+

Installation
------------

[](#installation)

Add the following to your project's `composer.json`:

```
"require": {
	"deedod/laravel-resque-ex": "1.0.*"
}

```

Now you need to run the following to install the package:

```
composer update

```

Next you need to add the following service provider to your `app/config/app.php`:

```
'Resque\ServiceProviders\ResqueServiceProvider'

```

Now you need to add the following to your `/app/config/queue.php` "connections" section:

```
"resque" => [
	"driver" => "resque"
]

```

If you wish to use this driver as your default Queue driver you will need to set the following as your "default" drive in `app/config/queue.php`:

```
"default" => "resque",

```

Usage
-----

[](#usage)

If you choose to not use this driver as your default Queue driver you can call a Queue method on demand by doing:

```
Queue::connection('resque')->push('JobName', ['name' => 'Andrew']);

```

### Enqueing a Job

[](#enqueing-a-job)

```
Queue::push('JobName', ['name' => 'Andrew']);

```

### Tracking a Job

[](#tracking-a-job)

```
$token = Queue::push('JobName', ['name' => 'Andrew'], true);
$status = Queue::getStatus($token);

```

### Enqueing a Future Job

[](#enqueing-a-future-job)

```
$when = time() + 3600; // 1 hour from now
Queue::later($when, 'JobName', ['name' => 'Andrew']);

```

Further Documentation
---------------------

[](#further-documentation)

- [PHP-Resque](https://github.com/kamisama/php-resque-ex)
- [PHP-Resque-Scheduler](https://github.com/kamisama/php-resque-ex-scheduler)

License
-------

[](#license)

Laravel Resque is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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

Every ~80 days

Total

7

Last Release

3770d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8f550c40e5cd9abdb8a4e6ab6341ef115c0c97ffd91d424d4b70b3c55911f519?d=identicon)[jcsmith1859](/maintainers/jcsmith1859)

---

Top Contributors

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

---

Tags

laravelqueueresqueilluminate

### Embed Badge

![Health badge](/badges/jcsmith1859-illuminate-resque/health.svg)

```
[![Health](https://phpackages.com/badges/jcsmith1859-illuminate-resque/health.svg)](https://phpackages.com/packages/jcsmith1859-illuminate-resque)
```

###  Alternatives

[shiftonelabs/laravel-sqs-fifo-queue

Adds a Laravel queue driver for Amazon SQS FIFO queues.

1556.0M3](/packages/shiftonelabs-laravel-sqs-fifo-queue)

PHPackages © 2026

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