Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Commit 0af448c

Browse files
authored
Merge pull request #11 from nativex/master
Addresses comments in PR #10 and relaxes region requirement
2 parents 4535a8b + 207e863 commit 0af448c

File tree

10 files changed

+2661
-140
lines changed

10 files changed

+2661
-140
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/vendor
1+
.idea
2+
/vendor

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ There are three options available in order to configure and use this plugin:
2828
{
2929
"config": {
3030
"amazon-aws": {
31-
"key": "your aws access key",
32-
"secret": "your aws secret"
31+
"credentials": {
32+
"key": "your aws access key",
33+
"secret": "your aws secret"
34+
}
3335
}
3436
}
3537
}

composer.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,21 @@
1616
"Naderman\\Composer\\AWS\\": "src/"
1717
}
1818
},
19+
"autoload-dev": {
20+
"psr-1": {
21+
"Test\\Naderman\\Composer\\AWS\\": "tests/"
22+
}
23+
},
1924
"extra": {
2025
"class": "Naderman\\Composer\\AWS\\AwsPlugin"
2126
},
2227
"require": {
23-
"aws/aws-sdk-php": "2.*",
28+
"php": ">=5.5",
29+
"aws/aws-sdk-php": "^3.0",
2430
"composer-plugin-api": "^1.0"
31+
},
32+
"require-dev": {
33+
"composer/composer": "^1.0",
34+
"phpunit/phpunit": "~4.8"
2535
}
2636
}

0 commit comments

Comments
 (0)