forked from clue/reactphp-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.04 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
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
{
"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@lueck.tv"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Docker\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Docker\\": "tests/" }
},
"require": {
"php": ">=5.3",
"react/event-loop": "~0.3.0|~0.4.0",
"clue/buzz-react": "^0.5",
"react/promise": "~2.0|~1.1",
"clue/json-stream": "~0.1.0",
"rize/uri-template": "^0.3",
"clue/promise-stream-react": "^0.1"
},
"require-dev": {
"clue/block-react": "~0.3.0",
"clue/caret-notation": "~0.2.0",
"clue/tar-react": "~0.1.0",
"phpunit/phpunit": "^7.0 || ^6.0 || ^5.0 || ^4.8.35"
}
}