{
    "name": "laravel/passkeys",
    "description": "Passwordless authentication using WebAuthn/passkeys for Laravel",
    "keywords": ["laravel", "passkeys", "webauthn", "passwordless", "authentication"],
    "homepage": "https://github.com/laravel/passkeys-server",
    "license": "MIT",
    "support": {
        "issues": "https://github.com/laravel/passkeys-server/issues",
        "source": "https://github.com/laravel/passkeys-server"
    },
    "authors": [
        {
            "name": "Taylor Otwell",
            "email": "taylor@laravel.com"
        }
    ],
    "require": {
        "php": "^8.2",
        "illuminate/contracts": "^11.0|^12.0|^13.0",
        "illuminate/database": "^11.0|^12.0|^13.0",
        "illuminate/http": "^11.0|^12.0|^13.0",
        "illuminate/routing": "^11.0|^12.0|^13.0",
        "illuminate/support": "^11.0|^12.0|^13.0",
        "web-auth/webauthn-lib": "5.2.4"
    },
    "require-dev": {
        "laravel/pint": "^1.28.0",
        "orchestra/testbench": "^9.0|^10.0|^11.0",
        "pestphp/pest": "^3.0|^4.0",
        "phpstan/phpstan": "^2.0",
        "rector/rector": "^2.3"
    },
    "autoload": {
        "psr-4": {
            "Laravel\\Passkeys\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Laravel\\Passkeys\\Tests\\": "tests/"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Laravel\\Passkeys\\PasskeysServiceProvider"
            ]
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "sort-packages": true,
        "preferred-install": "dist",
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    },
    "scripts": {
        "lint": "pint",
        "test:lint": "pint --test",
        "test:types": "phpstan analyse",
        "test:unit": "pest",
        "test": [
            "@test:lint",
            "@test:types",
            "@test:unit"
        ]
    }
}
