hlgrrnhrdt / laravel-resque
Installs: 19 273
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 3
Open Issues: 1
Requires
- danhunsaker/php-resque: ^1.3
- illuminate/config: ^5.2
- illuminate/console: ^5.2
Requires (Dev)
- phpunit/phpunit: ^5.4
This package is not auto-updated.
Last update: 2024-11-23 19:48:20 UTC
README
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');