-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
48 lines (47 loc) · 1.1 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
{
"name": "rx/websocket",
"type": "library",
"description": "Websockets for PHP using Rx",
"keywords": [
"websocket",
"websockets",
"rfc6455",
"rx",
"rx.php",
"rxphp",
"react",
"reactive"
],
"license": "MIT",
"authors": [
{
"name": "Matt Bonneau", "email": "[email protected]", "role": "Developer"
},
{
"name": "David Dan", "email": "[email protected]", "role": "Developer"
}
],
"autoload": {
"psr-4": {
"Rx\\Websocket\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rx\\Websocket\\Test\\": "test/",
"Rx\\": "vendor/reactivex/rxphp/test/Rx"
},
"files": [
"vendor/reactivex/rxphp/test/helper-functions.php"
]
},
"require": {
"react/http": "1.5.* | 1.6.* | 1.7.* | 1.8.*",
"ratchet/rfc6455": "^0.3",
"reactivex/rxphp": "^2.0.1",
"react/event-loop": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9 | ^10"
}
}