Go to file
Holger Reinhardt 97231d39b9 Update README
2016-08-02 08:14:39 +02:00
config Use redis config for connection 2016-08-01 09:46:16 +02:00
src use dsn to connect to redis 2016-08-01 10:49:21 +02:00
.gitignore initial commit 2016-07-28 23:52:05 +02:00
composer.json changed php-resque package 2016-07-30 00:30:29 +02:00
README.md Update README 2016-08-02 08:14:39 +02:00

Features

This package provides tools for the following, and more:

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

Installation

Via composer

$ composer require hlgrrnhrdt/laravel-resque

Copy the config file config/resque.php from the package to your config folder.

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');