generated from mnapoli/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
32 lines (32 loc) · 854 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
{
"name": "bref/api-gateway-websocket-client",
"description": "Websocket client for API Gateway Websockets",
"keywords": ["bref", "api-gateway", "websocket", "serverless"],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Bref\\ApiGatewayWebsocket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bref\\ApiGatewayWebsocket\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"async-aws/lambda": "^1.0|^2.0",
"symfony/http-client": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mnapoli/hard-mode": "^0.3.0",
"phpstan/phpstan": "^1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}