Skip to content

Commit 905c396

Browse files
author
Chris Boulton
committed
add basic composer.json. closes #59
1 parent b0fbfa4 commit 905c396

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "chrisboulton/php-resque",
3+
"type": "library",
4+
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.",
5+
"keywords": ["job", "background", "redis", "resque"],
6+
"homepage": "http://www.github.com/chrisboulton/php-resque/",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Chris Boulton",
11+
"email": "[email protected]"
12+
}
13+
],
14+
"require": {
15+
"php": ">=5.3.0"
16+
},
17+
"autoload": {
18+
"psr-0": {
19+
"Resque": "lib"
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)