laravel-resque/README.md
Holger Reinhardt 24fbc79ad1 typo in README
2016-08-02 08:15:19 +02:00

634 B

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.

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