-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
38 lines (38 loc) · 931 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": "aws/aws-sdk-php-silex",
"homepage": "http://aws.amazon.com/sdkforphp2",
"description": "A simple Silex service provider for including the AWS SDK for PHP.",
"keywords": ["silex","aws","amazon","sdk","s3","ec2","dynamodb"],
"type":"library",
"license":"Apache-2.0",
"authors":[
{
"name":"Amazon Web Services",
"homepage":"http://aws.amazon.com"
}
],
"require": {
"php": ">=5.5",
"aws/aws-sdk-php": "~3.0",
"silex/silex": "^2.0"
},
"autoload": {
"psr-4": {
"Aws\\Silex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aws\\Silex\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"squizlabs/php_codesniffer": "^2.3"
}
}