65 lines
1.5 KiB
JSON
Executable file
65 lines
1.5 KiB
JSON
Executable file
{
|
|
"name": "amphp/websocket",
|
|
"homepage": "https://github.com/amphp/websocket",
|
|
"description": "Shared code for websocket servers and clients.",
|
|
"support": {
|
|
"issues": "https://github.com/amphp/websocket/issues"
|
|
},
|
|
"keywords": [
|
|
"async",
|
|
"non-blocking",
|
|
"websocket",
|
|
"http",
|
|
"amp",
|
|
"amphp"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
},
|
|
{
|
|
"name": "Niklas Keller",
|
|
"email": "me@kelunik.com"
|
|
},
|
|
{
|
|
"name": "Bob Weinand",
|
|
"email": "bobwei9@hotmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"amphp/amp": "^3",
|
|
"amphp/byte-stream": "^2",
|
|
"amphp/parser": "^1",
|
|
"amphp/pipeline": "^1",
|
|
"amphp/socket": "^2",
|
|
"revolt/event-loop": "^1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"amphp/phpunit-util": "^3",
|
|
"amphp/php-cs-fixer-config": "^2",
|
|
"psalm/phar": "^5.18"
|
|
},
|
|
"suggest": {
|
|
"ext-zlib": "Required for compression"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Websocket\\": "src"
|
|
},
|
|
"files": [
|
|
"src/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Websocket\\Test\\": "test"
|
|
},
|
|
"files": [
|
|
"test/functions.php"
|
|
]
|
|
}
|
|
}
|