2017 © Pedro Peláez
 

symfony-bundle google-recaptcha-bundle

Symfony Google Recaptcha Form Type

image

kleegroup/google-recaptcha-bundle

Symfony Google Recaptcha Form Type

  • Tuesday, May 15, 2018
  • by t-veron
  • Repository
  • 15 Watchers
  • 4 Stars
  • 107 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 2 Open issues
  • 4 Versions
  • 32 % Grown

The README.md

Synopsys

Symfony 3 Bundle for Google Recaptcha with Proxy configuration., (*1)

Step 1: Setting up the bundle

1) Add GoogleRecaptchaBundle to your project

bash composer require kleegroup/google-recaptcha-bundle, (*2)

### 2) Enable the bundle, (*3)

Enable the bundle in the kernel:, (*4)

```php // app/AppKernel.php, (*5)

public function registerBundles() { $bundles = array( // ... new KleeGroup\GoogleReCaptchaBundle\GoogleReCaptchaBundle(), ); } ```, (*6)

Step 2: Configure the bundle =============================, (*7)

```yml // config.yml [...] google_re_captcha: site_key: [Google_site_key] secret_key: [Google_secret_key] enabled: true/false ajax: true/false locale_key: [locale_key] http_proxy: host: [IP or hostname] port: [Port], (*8)

```, (*9)

Step 3: Usage

```php public function buildForm( FormBuilderInterface $builder, array $options) { [...] $builder ->add('recaptcha', ReCaptchaType::class, [ 'mapped' => false, 'constraints' => [ new ReCaptcha(), ], ] ); [...], (*10)

}

```, (*11)

The Versions

15/05 2018

dev-master

9999999-dev https://github.com/KleeGroup/Recaptcha-bundle-symfony

Symfony Google Recaptcha Form Type

  Sources   Download

MIT

The Requires

 

The Development Requires

validator captcha google

15/05 2018

1.0.2

1.0.2.0 https://github.com/KleeGroup/Recaptcha-bundle-symfony

Symfony Google Recaptcha Form Type

  Sources   Download

MIT

The Requires

 

The Development Requires

validator captcha google

29/12 2017

1.0.1

1.0.1.0 https://github.com/KleeGroup/Recaptcha-bundle-symfony

Symfony Google Recaptcha Form Type

  Sources   Download

MIT

The Requires

 

The Development Requires

validator captcha google

13/12 2017

1.0

1.0.0.0 https://github.com/KleeGroup/Recaptcha-bundle-symfony

Symfony Google Recaptcha Form Type

  Sources   Download

MIT

The Requires

 

The Development Requires

validator captcha google