forked from vend/php-resque
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
62 lines (62 loc) · 1.66 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
56
57
58
59
60
61
62
{
"name": "innogames/php-resque",
"description": "Port of vend/resque which is the namespaced port of chrisbolton/php-resque, supports Predis, more DI",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Chris Boulton",
"email": "[email protected]"
},
{
"name": "Vend Devteam",
"email": "[email protected]"
},
{
"name": "Grepolis Devs",
"email": "[email protected]"
},
{
"name": "Justus Graf",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Resque\\": [
"src/",
"test/"
]
}
},
"bin": [
"resque"
],
"require": {
"php": ">=8.1",
"psr/log": "^1.1",
"symfony/console": "^5.0",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-json": "*"
},
"require-dev": {
"colinmollenhour/credis": "^1.11",
"predis/predis": ">=1.1",
"phpunit/phpunit": "^9.4",
"monolog/monolog": "^2.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-2.0": "2.0.x-dev"
}
},
"suggest": {
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker.",
"predis/predis": "Suggested Redis client",
"ext-phpiredis": "Better performance for Predis",
"colinmoullenhour/credis": "Alternative Redis client",
"ext-phpredis": "Better performance for Credis"
}
}