forked from wa0x6e/php-resque-ex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.22 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "taxibeat/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",
"predis/predis": "^1.1@stable"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"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"
},
"bin": [
"bin/resque"
],
"conflict": {
"chrisboulton/php-resque": "*"
}
}