-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 910 Bytes
/
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
{
"name": "swow-cloud/sockets",
"type": "library",
"description": "Development of nsq client based on swow",
"keywords": [
"swow",
"coroutine",
"async",
"sockets",
"server",
"swoole",
"nsq",
"serendipity"
],
"license": "MIT",
"authors": [
{
"name": "codingheping",
"email": "847050412@qq.com"
}
],
"require": {
"php": ">=8.0",
"ext-sockets": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"SwowCloud\\Socket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwowCloud\\SocketTest\\": "tests/"
}
},
"scripts": {
"cs-fix": [ "@php vendor/bin/php-cs-fixer fix" ]
},
"support": {
"pull-request": "https://github.com/swow-cloud/socket/pulls",
"issues": "https://github.com/swow-cloud/socket/issues"
}
}