-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.07 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
{
"name": "zhanguangcheng/linkerman",
"type": "library",
"keywords": [
"php",
"linkerman",
"workerman"
],
"description": "Linkerman is a library that utilizes Workerman to accelerate PHP frameworks.",
"homepage": "https://github.com/zhanguangcheng/linkerman",
"license": "MIT",
"authors": [
{
"name": "zhanguangcheng",
"email": "[email protected]",
"homepage": "https://github.com/zhanguangcheng",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/zhanguangcheng/linkerman/issues",
"source": "https://github.com/zhanguangcheng/linkerman"
},
"suggest": {
"ext-event": "For better performance. "
},
"require": {
"php": "^8.0",
"workerman/workerman": "^4.1"
},
"require-dev": {
"ext-curl": "*",
"pestphp/pest": "^2.25",
"guzzlehttp/guzzle": "^7.8"
},
"autoload": {
"psr-4": {
"Linkerman\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}