{
    "name": "web-auth/webauthn-framework",
    "description": "FIDO2/Webauthn library for PHP and Symfony Bundle.",
    "type": "symfony-bundle",
    "license": "MIT",
    "keywords": [],
    "homepage": "https://github.com/web-auth/webauthn-framework",
    "authors": [
        {
            "name": "Florent Morselli",
            "homepage": "https://github.com/Spomky"
        },{
            "name": "All contributors",
            "homepage": "https://github.com/web-auth/webauthn-framework/contributors"
        }
    ],
    "scripts": {
        "test:unit": "./vendor/bin/phpunit --color",
        "test:typing": "./vendor/bin/phpstan analyse",
        "test:syntax": "./vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation --using-cache=no",
        "test:mutations": "./vendor/bin/infection --logger-github --git-diff-filter=AM -s --threads=$(nproc) --min-msi=0 --min-covered-msi=0"
    },
    "autoload": {
        "psr-4": {
            "Cose\\": "src/cose/src/",
            "Webauthn\\": "src/webauthn/src/",
            "Webauthn\\Bundle\\": "src/symfony/src/",
            "Webauthn\\MetadataService\\": "src/metadata-service/src/",
            "Webauthn\\ConformanceToolset\\": "src/conformance-toolset/src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Cose\\Tests\\Unit\\": "tests/cose/unit/",
            "Webauthn\\Tests\\": [
                "tests/framework",
                "tests/library/"
            ],
            "Webauthn\\Tests\\Functional\\": "tests/library/",
            "Webauthn\\Bundle\\Tests\\Functional\\": "tests/symfony/functional/",
            "Webauthn\\Tests\\MetadataService\\Unit\\": "tests/MDS/unit/"
        }
    },
    "require": {
        "php": ">=7.2",
        "ext-json": "*",
        "ext-mbstring": "*",
        "ext-openssl": "*",
        "beberlei/assert": "^3.2",
        "fgrosse/phpasn1": "^2.1",
        "league/uri": "^6.0",
        "psr/http-client": "^1.0",
        "psr/http-factory": "^1.0",
        "psr/http-message": "^1.0",
        "psr/log": "^1.1",
        "ramsey/uuid": "^3.8|^4.0",
        "spomky-labs/base64url": "^2.0",
        "spomky-labs/cbor-bundle": "^2.0",
        "spomky-labs/cbor-php": "^1.0|^2.0",
        "symfony/config": "^4.4|^5.0",
        "symfony/dependency-injection": "^4.4|^5.0",
        "symfony/framework-bundle": "^4.4|^5.0",
        "symfony/process": "^3.0|^4.0|^5.0",
        "symfony/psr-http-message-bridge": "^1.2|^2.0",
        "thecodingmachine/safe": "^1.1",
        "web-token/jwt-signature": "^2.0.9"
    },
    "replace": {
        "web-auth/cose-lib": "self.version",
        "web-auth/webauthn-lib": "self.version",
        "web-auth/conformance-toolset": "self.version",
        "web-auth/metadata-service": "self.version",
        "web-auth/webauthn-symfony-bundle": "self.version"
    },
    "config": {
        "sort-packages": true
    },
    "suggest": {
        "psr/log-implementation": "Recommended to receive logs from the library",
        "symfony/security-bundle": "Symfony firewall using a JSON API (perfect for script applications)",
        "web-token/jwt-key-mgmt": "Mandatory for fetching Metadata Statement from distant sources",
        "web-token/jwt-signature-algorithm-rsa": "Mandatory for the AndroidSafetyNet Attestation Statement support",
        "web-token/jwt-signature-algorithm-ecdsa": "Mandatory for fetching Metadata Statement from distant sources",
        "web-token/jwt-signature-algorithm-eddsa": "Recommended for the AndroidSafetyNet Attestation Statement support"
    },
    "require-dev": {
        "doctrine/annotations": "^1.7",
        "doctrine/dbal": "^2.9|^3.0",
        "doctrine/doctrine-bundle": "^2.0",
        "doctrine/orm": "^2.6",
        "friendsofphp/php-cs-fixer": "^3.0",
        "infection/infection": ">=0.15|<0.24",
        "monolog/monolog": "^2.0",
        "nyholm/psr7": "^1.1",
        "php-http/curl-client": "^2.0",
        "php-http/mock-client": "^1.3",
        "phpstan/phpstan": "^1.0",
        "phpstan/phpstan-beberlei-assert": "^1.0",
        "phpstan/phpstan-deprecation-rules": "^1.0",
        "phpstan/phpstan-phpunit": "^1.0",
        "phpstan/phpstan-strict-rules": "^1.0",
        "phpunit/phpunit": "^8.0||^9.0",
        "symfony/browser-kit": "^4.4|^5.0",
        "symfony/http-client": "^4.4|^5.0",
        "symfony/monolog-bundle": "^3.5",
        "symfony/phpunit-bridge": "^5.1",
        "symfony/security-bundle": "^4.4|^5.0",
        "symfony/serializer": "^4.4|^5.0",
        "symfony/translation": "^4.4|^5.0",
        "symfony/validator": "^4.4|^5.0",
        "symfony/var-dumper": "^4.4|^5.0",
        "symfony/yaml": "^4.4|^5.0",
        "thecodingmachine/phpstan-safe-rule": "^1.0",
        "web-token/jwt-key-mgmt": "^2.0.9",
        "web-token/jwt-signature-algorithm-ecdsa": "^2.0.9",
        "web-token/jwt-signature-algorithm-eddsa": "^2.0.9",
        "web-token/jwt-signature-algorithm-rsa": "^2.0.9"
    }
}
