-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 953 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
37
38
39
40
41
42
43
44
{
"name": "jszczypk/wampsyncclient",
"description": "Synchronous (blocking) PHP client for WAMP protocol implementing Caller and Publisher roles",
"type": "library",
"keywords": [ "wamp", "rpc" ],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Janusz Szczypka",
"email": "janusz@smartb2b.eu",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.0",
"jszczypk/websocket": "^1.0.5"
},
"require-dev": {
"phan/phan": "^2.2",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"JSzczypk\\WampSyncClient\\": "src/"
}
},
"archive": {
"exclude": [
".phan/",
"vendor/",
".gitignore"
]
},
"scripts": {
"test": [
"composer validate",
"vendor/bin/phan",
"vendor/bin/phpcs --standard=PSR2 --warning-severity=0 src"
],
"fix": [
"vendor/bin/phpcbf --standard=PSR2 src"
]
}
}