summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: ad5e86e7db428bdd48306a5f7808ff588f6eff1f (plain)
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
{
    "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/" }
    },
    "scripts": {
        "test": "phpunit"
    }
}