-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
36 lines (36 loc) · 938 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
{
"name": "aws/aws-sdk-php-v3-bridge",
"description": "A compatibility pack for using Amazon SimpleDB with v3 of the AWS SDK for PHP",
"minimum-stability": "stable",
"keywords": ["aws","amazon","sdb","sdk","simpledb"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Amazon Web Services",
"homepage": "http://aws.amazon.com"
}
],
"support": {
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
"issues": "https://github.com/aws/aws-sdk-php/issues"
},
"autoload": {
"psr-4": {
"Aws\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aws\\": "tests/"
},
"classmap": ["build/"]
},
"require": {
"aws/aws-sdk-php": "^3.105.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"behat/behat": "^3.0"
}
}