add basic composer.json. closes #59

This commit is contained in:
Chris Boulton 2012-08-01 11:39:12 +10:00
parent b0fbfa4f15
commit 905c396703

22
composer.json Normal file
View File

@ -0,0 +1,22 @@
{
"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"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"Resque": "lib"
}
}
}