summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-04-21 05:53:26 +0200
committerRemi Collet <fedora@famillecollet.com>2016-04-21 05:53:26 +0200
commitc39ee76f9edfaea5e1fb96fb5c9ed50769f7c6ef (patch)
tree79ae806fc5258638bade70a9b42bc580a2fe2d7e /composer.json
parent2bba256b3bdf29d064561eb347899791da9f7872 (diff)
php-aws-sdk3: backport for remirepo
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json63
1 files changed, 63 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..8519343
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,63 @@
+{
+ "name": "aws/aws-sdk-php",
+ "homepage": "http://aws.amazon.com/sdkforphp",
+ "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
+ "keywords": ["aws","amazon","sdk","s3","ec2","dynamodb","cloud","glacier"],
+ "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"
+ },
+ "require": {
+ "php": ">=5.5",
+ "guzzlehttp/guzzle": "~5.3|~6.0.1|~6.1",
+ "guzzlehttp/psr7": "~1.0",
+ "guzzlehttp/promises": "~1.0",
+ "mtdowling/jmespath.php": "~2.2"
+ },
+ "require-dev": {
+ "ext-openssl": "*",
+ "ext-pcre": "*",
+ "ext-spl": "*",
+ "ext-json": "*",
+ "ext-dom": "*",
+ "ext-simplexml": "*",
+ "phpunit/phpunit": "~4.0|~5.0",
+ "behat/behat": "~3.0",
+ "doctrine/cache": "~1.4",
+ "aws/aws-php-sns-message-validator": "~1.0",
+ "nette/neon": "^2.3",
+ "andrewsville/php-token-reflection": "^1.4",
+ "psr/cache": "^1.0"
+ },
+ "suggest": {
+ "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
+ "ext-curl": "To send requests using cURL",
+ "doctrine/cache": "To use the DoctrineCacheAdapter",
+ "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications"
+ },
+ "autoload": {
+ "psr-4": {
+ "Aws\\": "src/"
+ },
+ "files": ["src/functions.php"]
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Aws\\Test\\": "tests/"
+ },
+ "classmap": ["build/"]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ }
+}