No description
Find a file
idanoo fa49d95d51
Some checks failed
CI / Linter (push) Has been cancelled
9.1.1 - Readd PHP8.1 support
2025-12-01 09:54:18 +13:00
.github/workflows 2.1.1 (2022-03-22) - Update Composer 2023-03-22 12:25:27 +13:00
config 2.0.0: Add namespacing (#1) 2021-02-19 13:44:10 +13:00
src v9.1 2025-11-27 15:11:18 +13:00
.gitignore V2.1 - Lumen8 support 2022-03-17 10:08:26 +13:00
composer.json v9.1 2025-11-27 15:11:18 +13:00
composer.lock 9.1.1 - Readd PHP8.1 support 2025-12-01 09:54:18 +13:00
README.md V2.1 - Lumen8 support 2022-03-17 10:08:26 +13:00
ruleset.xml Remove deprecated sniff 2025-09-11 07:47:56 +12:00

Features

This package provides tools for the following, and more:

  • Add jobs to queue
  • Console command to run a single worker

Installation

Via composer

$ composer require hlgrrnhrdt/laravel-resque

Copy the config file config/resque.php from the package to your config folder. Additionally a default redis connection needs to be configured in config/redis.php.

Laravel

'providers' => [
    Idanoo\Resque\ResqueServiceProvider::class
]

Lumen

Open bootstrap/app.php and register the required service provider

$app->register(Idanoo\Resque\ResqueServiceProvider::class);

and load the config with


$app->configure('resque');