Download the PHP package mael/recaptcha-bundle without Composer
On this page you can find all versions of the php package mael/recaptcha-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package recaptcha-bundle
MaelRecaptchaBundle for Symfony
MaelRecaptchaBundle is a bundle allowing the integration of Google Recaptcha on a Symfony project.
Available features
- Google ReCaptcha V2 (invisible) : :white_check_mark:
- Google ReCaptcha V2 (checkbox) : :white_check_mark:
- Google ReCaptcha V3 : :x:
Installation
It's very quick and easy, in 5 steps
- Install MaelRecaptchaBundle via composer
- Enable the bundle
- Generate you key and secret key
- Configure your key and secret key
- Use the Recaptcha in your forms
- Contributing
- License
Step 1 : Install MaelRecaptchaBundle via composer
Run the following command :
You can quickly configure this bundle by using symfony/flex
:
- Answer no for
google/recpatcha
- Answer yes for
mael/recaptcha-bundle
Step 2: Enable the bundle
Register bundle into config/bundles.php
Step 3: Generate your key and secret key
Go to the following link : http://www.google.com/recaptcha/admin
Setp 4: Configure your key and secret key
In you .env
file
Replace YOUR_RECAPTCHA_KEY
by your public key and YOUR_RECAPTCHA_SECRET
by your private key
Step 5: Editing your form and your view
For Google ReCaptcha V2 (invisible)
To enable Recaptcha (invisible) protection on your form, you must use this type: MaelRecaptchaSubmitType::class
For the third parameter which is an array, you can add the constraint : MaelRecaptcha
Then, to complete the configuration of the invisible Recaptcha, in your twig file you need to add a id to your form
To finish, add 2 <script>
tags
Replace "id-of-your-form" by the class of your form add just above it
Warning, you cannot change the name of the JavaScript function.
For Google ReCaptcha V2 (checkbox)
To enable Recaptcha (checkbox) protection on your form, you must use this type: MaelRecaptchaCheckboxType::class
For the third parameter which is an array, you can add the constraint : MaelRecaptcha
To finish, in your twig file add <script>
tag
Contributing
List of contribution HERE
You want contribute ? Fork this repertory and create a pull request after change
License
You can find the license in the root directory
All versions of recaptcha-bundle with dependencies
google/recaptcha Version ^1.2
symfony/config Version ^4.4|^5.0
symfony/dependency-injection Version ^4.4|^5.0
symfony/form Version ^4.4|^5.0
symfony/http-foundation Version ^4.4|^5.0.7
symfony/http-kernel Version ^4.4|^5.0
symfony/options-resolver Version ^4.4|^5.0
symfony/twig-pack Version *
symfony/validator Version ^4.4|^5.0