-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 773 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 773 Bytes
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
{
"name": "clue/socket-react",
"description": "Binding for raw sockets (ext-sockets) in reactphp",
"keywords": ["sockets", "low-level", "ext-sockets", "react", "async"],
"homepage": "https://github.com/clue/php-socket-react",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"require": {
"php": ">=5.3",
"clue/socket-raw": "1.* | 0.1.*",
"evenement/evenement": "1.*",
"react/event-loop": ">=0.2, <0.4",
"react/promise": "1.*",
"react/stream": ">=0.2, <0.4",
"react/socket": ">=0.2, <0.4",
"react/datagram": "~1.0"
},
"autoload": {
"psr-4": {"Socket\\React\\": "src"}
}
}