mirror of
https://github.com/idanoo/php-resque
synced 2025-06-30 21:22:20 +00:00
add basic composer.json. closes #59
This commit is contained in:
parent
b0fbfa4f15
commit
905c396703
1 changed files with 22 additions and 0 deletions
22
composer.json
Normal file
22
composer.json
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue