PHPackages                             salberts/symfony2recaptcha - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Validation &amp; Sanitization](/categories/validation)
4. /
5. salberts/symfony2recaptcha

ActiveSymfony-bundle[Validation &amp; Sanitization](/categories/validation)

salberts/symfony2recaptcha
==========================

This bundle provides easy reCAPTCHA form field integration

v1.4.7(10y ago)018MITPHP

Since Sep 2Pushed 10y ago1 watchersCompare

[ Source](https://github.com/salberts/symfony2recaptcha)[ Packagist](https://packagist.org/packages/salberts/symfony2recaptcha)[ Docs](https://github.com/salberts/symfony2recaptcha)[ RSS](/packages/salberts-symfony2recaptcha/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (14)Used By (0)

EWZRecaptchaBundle
==================

[](#ewzrecaptchabundle)

This bundle provides easy reCAPTCHA form field for Symfony.

A bridge for the Silex framework has been implemented too : [Jump to documentation](Bridge/README.md).

Installation
------------

[](#installation)

### Step 1: Use composer and enable Bundle

[](#step-1-use-composer-and-enable-bundle)

To install EWZRecaptchaBundle with Composer just add the following to your `composer.json` file:

```
// composer.json
{
    // ...
    "require": {
        // ...
        "excelwebzone/recaptcha-bundle": "dev-master"
    }
}
```

**NOTE**: Please replace `dev-master` in the snippet above with the latest stable branch, for example `2.3.*`.

Then, you can install the new dependencies by running Composer's `update`command from the directory where your `composer.json` file is located:

```
$ php composer.phar update
```

Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your `AppKernel.php` file, and register the new bundle:

```
