php-resque/composer.json

42 lines
939 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",
"version": "1.4.7",
2012-08-01 01:39:12 +00:00
"type": "library",
"replace": {
"chrisboulton/php-resque": "*",
"danhunsaker/php-resque": "*"
},
"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", "php"],
"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": {
2018-05-30 07:05:13 +00:00
"php": "^7.0",
"ext-pcntl": "*",
2018-05-25 08:26:04 +00:00
"ext-redis": "*",
2018-05-30 07:05:13 +00:00
"psr/log": "~1.0",
"colinmollenhour/credis": "^1.10"
2012-08-01 01:39:12 +00:00
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"bin": [
"bin/resque"
],
2012-08-01 01:39:12 +00:00
"autoload": {
"psr-0": {
"Resque": "lib"
}
},
"support": {
"issues": "https://github.com/idanoo/php-resque/issues",
"source": "https://github.com/idanoo/php-resque"
2012-08-01 01:39:12 +00:00
}
}