-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
31 lines (31 loc) · 986 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
{
"name": "utopia-php/websocket",
"description": "A simple abstraction for WebSocket servers.",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "websocket"],
"license": "MIT",
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/pint --test --preset=psr12 src tests",
"format": "./vendor/bin/pint --preset=psr12 src tests",
"check": "./vendor/bin/phpstan analyse --level max src tests"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {"Utopia\\WebSocket\\": "src/WebSocket"}
},
"autoload-dev": {
"psr-4": {"Utopia\\WebSocket\\Tests\\": "tests/e2e"}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"swoole/ide-helper": "5.1.2",
"textalk/websocket": "1.5.2",
"phpunit/phpunit": "^9.5.5",
"workerman/workerman": "^4.0",
"phpstan/phpstan": "^1.8",
"laravel/pint": "^1.15"
}
}