Go to file
idanoo 926f8a887c 2.0.0: Add namespacing (#1)
2.0.0: Namespace for idanoo/php-resque
Co-Authored-By: idanoo <daniel@m2.nz>
Co-Committed-By: idanoo <daniel@m2.nz>
2021-02-19 13:44:10 +13:00
config 2.0.0: Add namespacing (#1) 2021-02-19 13:44:10 +13:00
src 2.0.0: Add namespacing (#1) 2021-02-19 13:44:10 +13:00
.gitignore initial commit 2016-07-28 23:52:05 +02:00
composer.json 2.0.0: Add namespacing (#1) 2021-02-19 13:44:10 +13:00
README.md Add more details to README 2016-08-02 08:20:54 +02: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' => [
    Hlgrrnhrdt\Resque\ResqueServiceProvider::class
]

Lumen

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

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

and load the config with


$app->configure('resque');