{
    "name": "caseyamcl/guzzle_retry_middleware",
    "type": "library",
    "description": "Guzzle middleware that handles HTTP Retry-After middleware",
    "keywords": [
        "caseyamcl",
        "guzzle_retry_middleware",
        "guzzle",
        "middleware",
        "retry",
        "back-off",
        "retry-after"
    ],
    "homepage": "https://github.com/caseyamcl/guzzle_retry_middleware",
    "license": "MIT",
    "authors": [
        {
            "name": "Casey McLaughlin",
            "email": "caseyamcl@gmail.com",
            "homepage": "https://caseymclaughlin.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php" : "^7.1",
        "guzzlehttp/guzzle": "^6.3|^7.0"
    },
    "require-dev": {
        "nesbot/carbon": "^2.0",
        "phpunit/phpunit": "^7.5|^8.0|^9.0",
        "squizlabs/php_codesniffer": "^3.5"
    },
    "autoload": {
        "psr-4": {
            "ImpreseeGuzzleRetry\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ImpreseeGuzzleRetry\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "check-style": "phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
        "fix-style": "phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.0-dev"
        }
    },
    "config": {
        "sort-packages": true
    }
}
