-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.41 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
{
"name": "ekstazi/websocket-stream-client-amphp",
"description": "amphp/websocket-client adapter implementation for websocket stream client.",
"license": "MIT",
"authors": [
{
"name": "Maxim Furtuna",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/ekstazi/websocket-stream-client-amphp/issues"
},
"keywords": [
"async",
"non-blocking",
"websocket",
"client",
"stream",
"http",
"amp",
"amphp",
"websocket-client"
],
"require": {
"php": ">=7.2",
"ekstazi/websocket-stream-client": "^2.0",
"ekstazi/websocket-common-amphp": "^2.0",
"amphp/websocket-client": "^1",
"psr/container": "^1.0"
},
"provide": {
"ekstazi/websocket-stream-client-implementation": "1.0"
},
"require-dev": {
"amphp/phpunit-util": "^1.1",
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^8 || ^7"
},
"minimum-stability": "RC",
"autoload": {
"psr-4": {
"ekstazi\\websocket\\client\\amphp\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"ekstazi\\websocket\\client\\amphp\\test\\": "test"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml",
"lint": "php vendor/bin/php-cs-fixer --diff -v fix"
}
}