forked from iamluc/docker-hostmanager
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 759 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 759 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
29
{
"name": "iamluc/docker-hostmanager",
"license": "MIT",
"type": "project",
"description": "Update /etc/hosts to access running containers",
"keywords": ["docker", "hosts"],
"repositories": [
{"type": "vcs", "url": "https://github.com/iamluc/docker-php.git"}
],
"require": {
"symfony/console": "^2.8|^3.0",
"docker-php/docker-php": "dev-compat-docker-1.12"
},
"require-dev": {
"phpunit/phpunit": "^5.1"
},
"bin": [
"bin/docker-hostmanager"
],
"authors": [
{
"name": "Luc Vieillescazes",
"email": "luc@vieillescazes.net"
}
],
"autoload": {
"psr-4": {"DockerHostManager\\": "src/", "Test\\": "tests"}
}
}