1. Go to this page and download the library: Download superrb/google-recaptcha library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
superrb / google-recaptcha example snippets
use Superrb\GoogleRecaptchaBundle\Validator\Constraint\GoogleRecaptcha;
// ...
public function buildForm(FormBuilderInterface $builder, array $options)
{
// ...
$builder->add('recaptcha', HiddenType::class, [
'attr' => [
'class' => 'superrb-google-recaptcha',
],
'constraints' => [
new GoogleRecaptcha(),
],
]);
}