-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "vonec/gitsync",
"type": "library",
"description": "Laravel Package to deploy code automatically from git to multiple autoscaling EC2 instances on AWS using Github/Bitbucket webhooks",
"homepage": "https://github.com/vonec/gitsync",
"license": "MIT",
"support": {
"issues": "https://github.com/vonec/gitsync/issues",
"source": "https://github.com/vonec/gitsync"
},
"authors": [
{
"name": "Vonec Technologies",
"email": "[email protected]",
"homepage": "http://www.vonectech.com"
}
],
"require": {
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*",
"php" : "~5.6|~7.0",
"aws/aws-sdk-php": "^3.29",
"phpseclib/phpseclib": "^2.0"
},
"autoload": {
"psr-4": {
"Vonec\\Gitsync\\": "src"
}
},
"keywords": [
"vonec",
"gitsync",
"aws codedeploy",
"autoscaled instances",
"autoscaling",
"codedeploy",
"laravel",
"aws-ec2"
]
}