forked from wa0x6e/Fresque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.24 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
{
"name": "freelancehunt/fresque",
"description": "A command line tool to manage your php-resque workers",
"keywords": [
"php-resque",
"resque",
"cli",
"redis"
],
"authors": [
{
"name": "Oleg Topchiy",
"email": "[email protected]"
},
{
"name": "Yaroslav Molchan",
"email": "[email protected]"
},
{
"name": "Wan Chen",
"email": "[email protected]",
"homepage": "http://www.kamisama.me"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"Freelancehunt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"zetacomponents/console-tools": "^1.7",
"zetacomponents/base": "^1.9",
"ext-pcntl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mikey179/vfsstream": "^1.6.10",
"php-coveralls/php-coveralls": "^2.3"
},
"suggest": {
"chrisboulton/php-resque": "PHP port of resque (Workers and Queueing)"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/freelancehunt/fresque/issues",
"source": "https://github.com/freelancehunt/fresque"
},
"bin": [
"bin/resque",
"bin/fresque"
]
}