{
    "name": "asbiin/laravel-webauthn",
    "description": "Laravel Webauthn support",
    "keywords": [
        "laravel",
        "php",
        "webauthn",
        "security"
    ],
    "type": "library",
    "license": "MIT",
    "support": {
        "issues": "https://github.com/asbiin/laravel-webauthn/issues",
        "source": "https://github.com/asbiin/laravel-webauthn"
    },
    "authors": [
        {
            "name": "Alexis Saettler",
            "email": "alexis@saettler.org"
        }
    ],
    "require": {
        "php": ">=8.1",
        "illuminate/support": "^9.0",
        "psr/http-factory-implementation": "1.0",
        "thecodingmachine/safe": "^2.0",
        "web-auth/cose-lib": "^4.0",
        "web-auth/webauthn-lib": "^4.0",
        "web-token/jwt-signature": "^3.0"
    },
    "require-dev": {
        "ext-sqlite3": "*",
        "guzzlehttp/psr7": "^2.1",
        "laravel/legacy-factories": "^1.0",
        "nunomaduro/larastan": "^2.0",
        "ocramius/package-versions": "^2.0",
        "orchestra/testbench": "^7.0",
        "phpstan/phpstan-deprecation-rules": "^1.0",
        "phpstan/phpstan-phpunit": "^1.0",
        "phpstan/phpstan-strict-rules": "^1.0",
        "phpunit/phpunit": "^9.0",
        "thecodingmachine/phpstan-safe-rule": "^1.0"
    },
    "suggest": {
        "guzzlehttp/psr7": "To provide a psr/http-factory-implementation implementation",
        "symfony/psr-http-message-bridge": "To find a psr/http-factory-implementation implementation",
        "php-http/discovery": "To find a psr/http-factory-implementation implementation",
        "psr/http-client-implementation": "Required for the AndroidSafetyNet Attestation Statement support",
        "web-token/jwt-signature-algorithm-rsa": "Required for the AndroidSafetyNet Attestation Statement support",
        "web-token/jwt-signature-algorithm-ecdsa": "Required for the AndroidSafetyNet Attestation Statement support",
        "web-token/jwt-signature-algorithm-eddsa": "Required for the AndroidSafetyNet Attestation Statement support",
        "web-token/jwt-key-mgmt": "Required for the AndroidSafetyNet Attestation Statement support"
    },
    "autoload": {
        "psr-4": {
            "LaravelWebauthn\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "LaravelWebauthn\\Tests\\": "tests"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "LaravelWebauthn\\WebauthnServiceProvider"
            ]
        }
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "composer/package-versions-deprecated": true
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}
