-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
32 lines (32 loc) · 911 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
{
"name": "clue/ssdp-react",
"description": "Async Simple Service Discovery Protocol (SSDP), built on top of ReactPHP.",
"keywords": ["Simple Service Discovery Protocol", "SSDP", "Universal Plug and Play", "UPnP", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-ssdp",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Clue\\React\\Ssdp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Ssdp\\": "tests/"
}
},
"require": {
"php": ">=5.3",
"clue/multicast-react": "^1.0 || ^0.2",
"react/event-loop": "^1.2",
"react/promise": "^2.0 || ^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
}
}