2021-05-13 16:04:00 +00:00
|
|
|
{
|
|
|
|
"name": "google/recaptcha",
|
|
|
|
"description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
|
|
|
|
"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/google/recaptcha"
|
|
|
|
},
|
|
|
|
"require": {
|
2024-07-30 20:21:59 +00:00
|
|
|
"php": ">=8"
|
2021-05-13 16:04:00 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2024-07-30 20:21:59 +00:00
|
|
|
"phpunit/phpunit": "^10",
|
|
|
|
"friendsofphp/php-cs-fixer": "^3.14",
|
|
|
|
"php-coveralls/php-coveralls": "^2.5"
|
2021-05-13 16:04:00 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"ReCaptcha\\": "src/ReCaptcha"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2024-07-30 20:21:59 +00:00
|
|
|
"dev-master": "1.3.x-dev"
|
2021-05-13 16:04:00 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2024-07-30 20:21:59 +00:00
|
|
|
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run .",
|
|
|
|
"lint-fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer -vvv fix --using-cache=no .",
|
|
|
|
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit",
|
2021-05-13 16:04:00 +00:00
|
|
|
"serve-examples": "@php -S localhost:8080 -t examples"
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"process-timeout": 0
|
|
|
|
}
|
|
|
|
}
|