forked from reactphp/datagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 828 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 828 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
27
{
"name": "react/datagram",
"description": "Event-driven UDP datagram socket client and server for ReactPHP",
"keywords": ["udp", "datagram", "dgram", "socket", "client", "server", "ReactPHP", "async"],
"homepage": "https://github.com/reactphp/datagram",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"autoload": {
"psr-4": {"React\\Datagram\\": "src"}
},
"require": {
"php": ">=5.3",
"evenement/evenement": "^3.0 || ^2.0 || ^1.0",
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
"react/dns": "^0.4.13",
"react/promise": "~2.1|~1.2"
},
"require-dev": {
"clue/block-react": "~1.0",
"phpunit/phpunit": "^5.0 || ^4.8"
}
}