2012-08-01 01:39:12 +00:00
|
|
|
{
|
|
|
|
"name": "chrisboulton/php-resque",
|
|
|
|
"type": "library",
|
|
|
|
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.",
|
|
|
|
"keywords": ["job", "background", "redis", "resque"],
|
|
|
|
"homepage": "http://www.github.com/chrisboulton/php-resque/",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Chris Boulton",
|
|
|
|
"email": "chris@bigcommerce.com"
|
|
|
|
}
|
|
|
|
],
|
2013-01-12 12:37:38 +00:00
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "https://github.com/chrisboulton/credis"
|
|
|
|
}
|
|
|
|
],
|
2012-08-01 01:39:12 +00:00
|
|
|
"require": {
|
2013-01-12 12:37:38 +00:00
|
|
|
"php": ">=5.3.0",
|
2013-03-27 15:45:05 +00:00
|
|
|
"ext-pcntl": "*",
|
2013-06-25 15:56:28 +00:00
|
|
|
"colinmollenhour/credis": "1.2.*",
|
|
|
|
"psr/log": "1.0.0"
|
2012-08-01 01:39:12 +00:00
|
|
|
},
|
2013-01-12 12:56:16 +00:00
|
|
|
"suggest": {
|
|
|
|
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker.",
|
|
|
|
"ext-redis": "Native PHP extension for Redis connectivity. Credis will automatically utilize when available."
|
|
|
|
},
|
2013-01-12 10:47:07 +00:00
|
|
|
"require-dev": {
|
|
|
|
"phpunit/phpunit": "3.7.*"
|
|
|
|
},
|
2013-01-12 11:40:26 +00:00
|
|
|
"bin": [
|
|
|
|
"bin/resque"
|
|
|
|
],
|
2012-08-01 01:39:12 +00:00
|
|
|
"autoload": {
|
|
|
|
"psr-0": {
|
|
|
|
"Resque": "lib"
|
|
|
|
}
|
|
|
|
}
|
2013-03-27 15:45:05 +00:00
|
|
|
}
|