-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
40 lines (40 loc) · 1.13 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
36
37
38
39
40
{
"name": "clue/docker-react",
"description": "Async, event-driven access to the Docker Engine API, built on top of ReactPHP.",
"keywords": ["Docker", "container", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-docker",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@clue.engineering"
}
],
"require": {
"php": ">=5.3",
"clue/json-stream": "^0.1",
"react/event-loop": "^1.2",
"react/http": "^1.11",
"react/promise": "^3.2 || ^2.11 || ^1.3",
"react/promise-stream": "^1.6",
"react/socket": "^1.16",
"react/stream": "^1.4",
"rize/uri-template": "^0.3"
},
"require-dev": {
"clue/caret-notation": "^0.2",
"clue/tar-react": "^0.2",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
"react/async": "^4.2 || ^3 || ^2"
},
"autoload": {
"psr-4": {
"Clue\\React\\Docker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Docker\\": "tests/"
}
}
}