-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
33 lines (33 loc) · 961 Bytes
/
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
{
"name": "clue/mdns-react",
"description": "Simple, async multicast DNS (mDNS) resolver for zeroconf networking, built on top of ReactPHP.",
"keywords": ["Multicast DNS", "mDNS", "RFC 6762", "zeroconf", "Bonjour", "Avahi", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-mdns",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Clue\\React\\Mdns\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Mdns\\": "tests/"
}
},
"require": {
"php": ">=5.3",
"clue/multicast-react": "^1.0 || ^0.2",
"react/dns": "~0.4.0|~0.3.0",
"react/event-loop": "^1.2",
"react/promise": "^2.1 || ^1.2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
}
}