This repository has been archived by the owner on Sep 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
53 lines (53 loc) · 1.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "aoepeople/stackformation",
"description": "Lightweight AWS CloudFormation Stack Manager",
"license": "OSL-3.0",
"authors": [{
"name": "Fabrizio Branca",
"email": "[email protected]",
"homepage": "https://github.com/fbrnc",
"role": "Author"
}, {
"name": "Lee Saferite",
"email": "[email protected]",
"homepage": "https://github.com/LeeSaferite",
"role": "Contributor"
}, {
"name": "Daniel Niedergesäß",
"email": "[email protected]",
"homepage": "https://github.com/smart-devs",
"role": "Contributor"
}],
"require": {
"symfony/console": "^3.0.0",
"symfony/yaml": "^3.0.0",
"symfony/config": "^3.0.0",
"symfony/finder": "^3.1",
"aws/aws-sdk-php": "^3.52",
"tedivm/jshrink": "^1.1",
"vlucas/phpdotenv": "~2.1",
"monolog/monolog": "~1",
"php": ">=5.5.0"
},
"suggest": {
"aoepeople/vault": "Allows encrypting/decrypting ssh keys and profiles on the fly"
},
"replace": {
"aoepeople/awsinspector": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.4",
"codeclimate/php-test-reporter": "0.3.2",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"StackFormation\\": "src/StackFormation/",
"AwsInspector\\": "src/AwsInspector/",
"StackFormation\\Tests\\": "tests/StackFormation/",
"AwsInspector\\Tests\\": "tests/AwsInspector/"
},
"files": ["src/dotenv.php"]
},
"bin": [ "src/stackformation.php" ]
}