-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
36 lines (36 loc) · 916 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
{
"name": "vakata/websocket",
"description": "PHP websocket server and client",
"keywords": [
"vakata",
"websocket"
],
"homepage": "https://github.com/vakata/websocket",
"license": "MIT",
"authors": [
{
"name": "vakata",
"email": "[email protected]",
"homepage": "http://www.vakata.com",
"role": "Developer"
}
],
"require": {
"php" : ">=8.0"
},
"autoload": {
"psr-4": {
"vakata\\websocket\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"vakata\\websocket\\test\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyze -l 8 src",
"phpcs": "phpcs --standard=PSR12 --extensions=php --ignore=*/vendor/* ./",
"phpcsfix": "phpcbf --standard=PSR12 --extensions=php --ignore=*/vendor/* ./"
}
}