forked from clue/reactphp-multicast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 1011 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 1011 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
28
29
30
31
{
"name": "clue/multicast-react",
"description": "Simple, event-driven multicast UDP message client and server for ReactPHP.",
"keywords": ["multicast", "mcast", "udp", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-multicast",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@clue.engineering"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Multicast\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Multicast\\": "tests/" }
},
"require": {
"php": ">=5.3",
"react/event-loop": "^1.2",
"react/datagram": "~1.0"
},
"require-dev": {
"clue/hexdump": "0.2.*",
"phpunit/phpunit": "^9.3 ||^6.0 || ^5.7 || ^4.8.35"
},
"suggest": {
"ext-sockets": "Requires PHP 5.4+ and the low level socket API for listening on multicast addresses (socket options to send IGMP announcements)"
}
}