-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
35 lines (35 loc) · 1.03 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
{
"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": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Clue\\React\\Multicast\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Multicast\\": "tests/"
}
},
"require": {
"php": ">=5.3",
"react/datagram": "^1.10",
"react/event-loop": "^1.2"
},
"require-dev": {
"clue/hexdump": "0.2.*",
"phpunit/phpunit": "^9.6 ||^6.0 || ^5.7 || ^4.8.36"
},
"suggest": {
"ext-sockets": "Requires PHP 5.4+ and the low level socket API for listening on multicast addresses (socket options to send IGMP announcements)"
}
}