{
    "name": "phpfui/recaptcha",
    "description": "Client library for Google's reCAPTCHA for PHP 8.4 and higher",
    "type": "library",
    "keywords": ["recaptcha", "captcha", "spam", "abuse"],
    "homepage": "https://www.google.com/recaptcha/",
    "license": "BSD-3-Clause",
    "support": {
        "forum": "https://groups.google.com/forum/#!forum/recaptcha",
        "source": "https://github.com/phpfui/recaptcha"
    },
    "require": {
        "php": ">=8.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^12",
        "friendsofphp/php-cs-fixer": "^3.14",
        "php-coveralls/php-coveralls": "^2.5",
        "phpstan/phpstan": "^2.1"
    },
    "autoload": {
        "psr-4": {"ReCaptcha\\": "src/ReCaptcha"}
    },
    "autoload-dev": {
         "psr-4": {"ReCaptcha\\": "tests/ReCaptcha/"}
    },
    "scripts": {
        "lint": [
            "@putenv PHP_CS_FIXER_IGNORE_ENV=1",
            "vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run ."
        ],
        "lint-fix": [
            "@putenv PHP_CS_FIXER_IGNORE_ENV=1",
            "vendor/bin/php-cs-fixer -vvv fix --using-cache=no ."
        ],
        "test": [
            "vendor/bin/phpstan",
            "vendor/bin/phpunit --display-phpunit-deprecations"
        ],
        "serve-examples": "@php -S localhost:8080 -t examples"
    },
    "config": {
        "process-timeout": 0
    }
}
