mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
36 lines
812 B
JSON
36 lines
812 B
JSON
{
|
|
"name": "idanoo/php-resque",
|
|
"version": "1.4.1",
|
|
"type": "library",
|
|
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby. Originally forked from chrisboulton/php-resque.",
|
|
"keywords": ["job", "background", "redis", "resque"],
|
|
"homepage": "http://www.github.com/iDanoo/php-resque/",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Mason",
|
|
"email": "daniel@m2.nz"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0.0",
|
|
"ext-pcntl": "*",
|
|
"ext-redis": "*",
|
|
"psr/log": "~1.0"
|
|
},
|
|
"suggest": {
|
|
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker."
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6"
|
|
},
|
|
"bin": [
|
|
"bin/resque"
|
|
],
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Resque": "lib"
|
|
}
|
|
}
|
|
}
|