-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
53 lines (53 loc) · 985 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
45
46
47
48
49
50
51
52
53
{
"name": "rx/thruway-client",
"type": "library",
"description": "RxPHP WAMP client",
"keywords": [
"rxphp",
"reactivex",
"rx.php",
"thruway",
"WAMP"
],
"license": "MIT",
"authors": [
{
"name": "David Dan",
"email": "davidwdan@gmail.com",
"role": "Developer"
},
{
"name": "Matt Bonneau",
"email": "matt@bonneau.net",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Rx\\Thruway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rx\\Thruway\\Tests\\": "tests/",
"Rx\\": "vendor/reactivex/rxphp/test/Rx"
},
"files": [
"vendor/reactivex/rxphp/test/helper-functions.php"
]
},
"require": {
"php": ">=7.1",
"voryx/thruway-common": "^1.0.0",
"reactivex/rxphp": "^2.0.4",
"rx/websocket": "^2.1.7"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}