prugala/recaptcha-bundle
最新稳定版本:1.3.2
Composer 安装命令:
composer require prugala/recaptcha-bundle
包简介
reCAPTCHA v3 bundle for Symfony
关键字:
README 文档
README
This repository is archived and not maintained.
Please use: https://github.com/excelwebzone/EWZRecaptchaBundle
RecaptchaBundle
Recaptcha v3 bundle for Symfony
Installation
composer require prugala/recaptcha-bundle
Register bundle in AppKernel.php file:
new PR\Bundle\RecaptchaBundle\PRRecaptchaBundle()
Configuration
pr_recaptcha: public_key: 'public key' secret_key: 'secret key' enabled: false # optional / default value: true - you can disable it for local or test env score_threshhold: 'score' # optional / default value: 0.5 hide_badge: true # optional / default value: false * host: 'www.google.com' # optional / default value: www.google.com **
* When you hide badge inform visitors that reCAPTCHA is implemented on website:
https://developers.google.com/recaptcha/docs/faq#hiding-badge
** If you plan to use reCAPTCHA globally please use host www.recaptcha.net.
More informations:
https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally
In Symfony 4.4 and newer you need to register form theme by yourself by adding in config/packages.twig.yaml
twig: form_themes: ['@PRRecaptcha/Form/recaptcha.html.twig']
How to use
Add field with type RecaptchaType to your form, example:
->add('captcha', RecaptchaType::class)
Options available:
->add('captcha', RecaptchaType::class, [ 'script_nonce_csp' => $nonce, 'action_name' => 'contact_form' ])
- script_nonce_csp: Nonce for Content-Security-Policy header
- action_name: Form specific action name
TODO
- Support for version v2
- Waiting for suggestions :)
统计信息
- 总下载量: 38.96k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 14
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-11