-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
38 lines (38 loc) · 1022 Bytes
/
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
{
"name": "fruux/ec2dns",
"replace": { "dominikto/ec2dns": "self.version" },
"description": "ec2dns is a set of command line tools that makes it easy to display public hostnames of EC2 instances and ssh into them via their tag name.",
"keywords" : [ "aws", "ec2", "host", "dns", "server", "hostname", "tags", "ssh", "scp" ],
"homepage" : "https://github.com/fruux/ec2dns",
"license" : "BSD-3-Clause",
"require": {
"php":">=5.5.0",
"aws/aws-sdk-php": "~2.8.0",
"hoa/dns": "~3.0",
"hoa/socket": "~1.0"
},
"require-dev": {
"sabre/cs" : "dev-master"
},
"autoload" : {
"psr-4" : {
"ec2dns\\" : "lib/"
}
},
"config" : {
"bin-dir" : "bin"
},
"bin": [
"bin/ec2dns",
"bin/ec2updatehostsfile",
"bin/ec2host",
"bin/ec2ssh",
"bin/ec2scp",
"bin/ec2dnshelper"
],
"authors": [
{
"name": "Dominik Tobschall"
}
]
}