forked from clue/reactphp-ssdp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 895 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 895 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
{
"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": "christian@lueck.tv"
}
],
"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.0 || ^0.5 || ^0.4 || ^0.3",
"react/promise": "^2.0 || ^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
}
}