forked from wa0x6e/php-resque-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1022 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "kamisama/php-resque-ex",
"type": "library",
"description": "Redis backed library for creating background jobs and processing them later. PHP port based on resque for Ruby.",
"keywords": ["job", "background", "redis", "resque", "queue", "php"],
"homepage": "http://www.github.com/kamisama/php-resque-ex/",
"license": "MIT",
"authors": [
{
"name": "Wan Chen",
"email": "[email protected]",
"homepage": "http://www.kamisama.me"
},
{
"name": "Chris Boulton",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"ext-pcntl": "*",
"monolog/monolog": ">=1.2.0",
"kamisama/monolog-init": ">=0.1.1"
},
"autoload": {
"psr-0": {
"Resque": "lib"
}
},
"suggest": {
"fresque/fresque": "A command line tool to manage your workers"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/kamisama/php-resque-ex/issues",
"source": "https://github.com/kamisama/php-resque-ex"
},
"conflict": {
"chrisboulton/php-resque": "*"
}
}