mirror of
https://github.com/idanoo/laravel-resque.git
synced 2024-11-21 08:01:59 +00:00
config | ||
src | ||
.gitignore | ||
composer.json | ||
README.md |
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');