-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "kit/websocket",
"description": "A Websocket implementation using ReactPHP",
"keywords": [
"php",
"websocket",
"package"
],
"type": "library",
"require": {
"php": "^8.3.0",
"psr/event-dispatcher": "^1.0@dev",
"psr/http-message": "^2.0@dev",
"react/async": "^4.2",
"react/event-loop": "^1.5",
"react/promise": "^3.2.0",
"react/socket": "^1.0",
"react/stream": "^1.0",
"revolt/event-loop-adapter-react": "^1.1"
},
"require-dev": {
"laravel/pint": "^1.17.3",
"mockery/mockery": "^1.6",
"monolog/monolog": "^3.7",
"pestphp/pest": "3.x-dev",
"pestphp/pest-plugin-type-coverage": "^3.0",
"phpstan/phpstan": "^1.12.4",
"rector/rector": "^1.2.5",
"symfony/var-dumper": "^7.1.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Kit\\Websocket\\": "src/"
},
"files": [
"src/functions/functions.php",
"src/functions/key-handling.php",
"src/functions/binary-string.php",
"src/functions/byte-functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Gabriel Berthier",
"email": "gabrielnberthier@gmail.com"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"pest": "pest",
"refacto": "rector",
"lint": "pint",
"test:refacto": "rector --dry-run",
"test:lint": "pint --test",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always --parallel --min=100",
"test": [
"@test:refacto",
"@test:lint",
"@test:types",
"@test:unit"
]
}
}