-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
55 lines (55 loc) · 1.23 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": "workbunny/webman-rqueue",
"type": "library",
"license": "MIT",
"description": "Webman plugin workbunny/webman-rqueue",
"authors": [
{
"name": "chaz6chez",
"email": "[email protected]",
"homepage": "https://chaz6chez.cn"
}
],
"support": {
"issues": "https://github.com/workbunny/webman-rqueue/issues",
"source": "https://github.com/workbunny/webman-rqueue"
},
"require": {
"php": "^8.0",
"ext-redis": "*",
"psr/log": "^2.0 | ^3.0",
"psr/container": "^1.0 | ^2.0",
"webman/console": "^1.0",
"illuminate/redis": "^9.0 | ^10.0 | ^11.0",
"illuminate/events": "^9.0 | ^10.0 | ^11.0",
"illuminate/database": "^9.0 | ^10.0 | ^11.0",
"monolog/monolog": "^2.0 | ^3.0"
},
"require-dev": {
"workerman/webman-framework": "^1.0",
"symfony/var-dumper": "^6.0",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Workbunny\\WebmanRqueue\\": "src"
},
"files": [
"./src/helpers.php"
],
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"Workbunny\\Tests\\": "tests",
"process\\": "process"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}