| Package Data | |
|---|---|
| Maintainer Username: | hlgrrnhrdt |
| Maintainer Contact: | hlgrrnhrdt@gmail.com (Holger Reinhardt) |
| Package Create Date: | 2016-07-28 |
| Package Last Update: | 2019-07-09 |
| Language: | PHP |
| License: | Unknown |
| Last Refreshed: | 2025-11-02 15:12:11 |
| Package Statistics | |
|---|---|
| Total Downloads: | 19,277 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 3 |
| Total Watchers: | 2 |
| Total Forks: | 3 |
| Total Open Issues: | 1 |
This package provides tools for the following, and more:
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.
'providers' => [
Hlgrrnhrdt\Resque\ResqueServiceProvider::class
]
Open bootstrap/app.php and register the required service provider
$app->register(Hlgrrnhrdt\Resque\ResqueServiceProvider::class);
and load the config with
$app->configure('resque');