-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·40 lines (40 loc) · 1 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
{
"name": "uecode/amazon-bundle",
"type": "symfony-bundle",
"description": "AWS SDK v2 Bundle for Symfony2",
"keywords": [
"php",
"uecode",
"aws"
],
"homepage": "https://github.com/uecode/amazon-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Aaron Scherer",
"email": "[email protected]",
"role": "developer",
"homepage": "https://github.com/aequasi"
},
{
"name": "John Pancoast",
"email": "[email protected]",
"role": "developer",
"homepage": "https://github.com/shideon"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"aws/aws-sdk-php": ">=2.5.0"
},
"suggest": {
"monolog/monolog": "Allows more advanced logging of the application flow"
},
"autoload": {
"psr-4": {
"Uecode\\Bundle\\AmazonBundle\\": "src/"
}
}
}