php-resque/composer.json

35 lines
791 B
JSON
Raw Normal View History

2012-08-01 01:39:12 +00:00
{
2018-05-27 02:41:18 +00:00
"name": "idanoo/php-resque",
2012-08-01 01:39:12 +00:00
"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.",
2012-08-01 01:39:12 +00:00
"keywords": ["job", "background", "redis", "resque"],
"homepage": "http://www.github.com/iDanoo/php-resque/",
2012-08-01 01:39:12 +00:00
"license": "MIT",
"authors": [
{
"name": "Daniel Mason",
"email": "daniel@m2.nz"
}
],
2012-08-01 01:39:12 +00:00
"require": {
"php": ">=7.0.0",
"ext-pcntl": "*",
2018-05-25 08:26:04 +00:00
"ext-redis": "*",
2016-12-06 12:05:43 +00:00
"psr/log": "~1.0"
2012-08-01 01:39:12 +00:00
},
"suggest": {
2018-05-25 08:27:18 +00:00
"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"
],
2012-08-01 01:39:12 +00:00
"autoload": {
"psr-0": {
"Resque": "lib"
}
}
}