{
    "name": "zendframework/zend-expressive-authentication",
    "description": "Authentication middleware for Expressive and PSR-7 applications",
    "license": "BSD-3-Clause",
    "keywords": [
        "zf",
        "zendframework",
        "authentication",
        "http",
        "middleware",
        "zend-expressive",
        "psr-7",
        "psr-15"
    ],
    "support": {
        "docs": "https://docs.zendframework.com/zend-expressive-authentication/",
        "issues": "https://github.com/zendframework/zend-expressive-authentication/issues",
        "source": "https://github.com/zendframework/zend-expressive-authentication",
        "rss": "https://github.com/zendframework/zend-expressive-authentication/releases.atom",
        "slack": "https://zendframework-slack.herokuapp.com",
        "forum": "https://discourse.zendframework.com/c/questions/expressive"
    },
    "require": {
        "php": "^7.1",
        "psr/container": "^1.0",
        "psr/http-message": "^1.0.1",
        "psr/http-server-middleware": "^1.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.0.2",
        "roave/security-advisories": "dev-master",
        "zendframework/zend-coding-standard": "~1.0.0"
    },
    "conflict": {
        "container-interop/container-interop": "<1.2.0"
    },
    "suggest": {
        "ext-pdo": "*: for use with the PDO-backed UserRepositoryInterface implementation",
        "zendframework/zend-expressive-authentication-basic": "Provides an HTTP Basic Authentication AuthenticationInterface implementation",
        "zendframework/zend-expressive-authentication-session": "Provides a username/password + session AuthenticationInterface implementation",
        "zendframework/zend-expressive-authentication-zendauthentication": "Provides a zend-authentication AuthenticationInterface implementation"
    },
    "autoload": {
        "psr-4": {
            "Zend\\Expressive\\Authentication\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "ZendTest\\Expressive\\Authentication\\": "test/"
        }
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.1.x-dev",
            "dev-develop": "1.2.x-dev"
        },
        "zf": {
            "config-provider": "Zend\\Expressive\\Authentication\\ConfigProvider"
        }
    },
    "scripts": {
        "check": [
            "@cs-check",
            "@test"
        ],
        "cs-check": "phpcs",
        "cs-fix": "phpcbf",
        "test": "phpunit --colors=always",
        "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
    }
}
