hlgrrnhrdt / laravel-resque by hlgrrnhrdt

19,271
3
2
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: 2024-05-10 15:13:13
Package Statistics
Total Downloads: 19,271
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 3
Total Open Issues: 1

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