-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
54 lines (54 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
{
"name": "topthink/think-worker",
"description": "workerman extend for thinkphp",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"workerman/workerman": "^5.0",
"topthink/framework": "^8.0",
"revolt/event-loop": "^1.0",
"workerman/redis": "^2.0"
},
"autoload": {
"psr-4": {
"think\\worker\\": "src"
}
},
"extra": {
"think": {
"services": [
"think\\worker\\Service"
],
"config": {
"worker": "src/config/worker.php"
}
}
},
"require-dev": {
"pestphp/pest": "^3.7",
"guzzlehttp/guzzle": "^7.0",
"topthink/think-queue": "^3.0",
"phpstan/phpstan": "^2.0",
"ratchet/pawl": "^0.4.1"
},
"autoload-dev": {
"psr-4": {
"app\\": "tests/stub/app"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"analyze": "phpstan --memory-limit=1G",
"test": "pest --colors=always"
}
}