php-resque/composer.json

35 lines
721 B
JSON
Raw Normal View History

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"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/chrisboulton/credis"
}
],
2012-08-01 01:39:12 +00:00
"require": {
"php": ">=5.3.0",
"colinmollenhour/credis": "dev-master"
2012-08-01 01:39:12 +00:00
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"bin": [
"bin/resque"
],
2012-08-01 01:39:12 +00:00
"autoload": {
"psr-0": {
"Resque": "lib"
}
}
}