forked from clue/reactphp-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.12 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
{
"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": "[email protected]"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Docker\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Docker\\": "tests/" }
},
"require": {
"php": ">=5.3",
"clue/buzz-react": "^2.0",
"clue/json-stream": "^0.1",
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
"react/promise": "^2.0 || ^1.1",
"react/promise-stream": "^1.0",
"react/socket": "^1.0",
"react/stream": "^1.0",
"rize/uri-template": "^0.3"
},
"require-dev": {
"clue/block-react": "^1.0 || ^0.3",
"clue/caret-notation": "^0.2",
"clue/tar-react": "^0.2",
"phpunit/phpunit": "^7.0 || ^6.0 || ^5.0 || ^4.8.35"
}
}