diff options
author | Remi Collet <remi@remirepo.net> | 2017-09-10 10:55:37 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-09-10 10:55:37 +0200 |
commit | 5229a013d31af8fd059bd83ae55ca26cba03ac70 (patch) | |
tree | 6fa0c810647dbe02cc89a50919b6b14e9807fb7e | |
parent | 2ae520084934a4e3e10be020038d8628a57f296a (diff) |
add composer
-rwxr-xr-x | composer.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100755 index 0000000..93415f0 --- /dev/null +++ b/composer.json @@ -0,0 +1,34 @@ +{ + "name": "aws/aws-php-sns-message-validator", + "homepage": "http://aws.amazon.com/sdkforphp", + "description": "Amazon SNS message validation for PHP", + "keywords": ["aws","amazon","sdk","sns","message","webhooks","cloud"], + "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-sns-message-validator/issues" + }, + "require": { + "php": ">=5.4", + "ext-openssl": "*", + "psr/http-message": "^1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0", + "squizlabs/php_codesniffer": "^2.3", + "guzzlehttp/psr7": "^1.4" + }, + "autoload": { + "psr-4": { "Aws\\Sns\\": "src/" } + }, + "autoload-dev": { + "psr-4": { "Aws\\Sns\\": "tests/" } + } +} |