PHPackages                             newscoop/recaptcha-bundle - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. newscoop/recaptcha-bundle

ActiveSymfony-bundle[Authentication &amp; Authorization](/categories/authentication)

newscoop/recaptcha-bundle
=========================

This bundle provides easy reCAPTCHA form field integration, this is a fork of https://github.com/excelwebzone/EWZRecaptchaBundle

2.2(12y ago)323.8kMITPHP

Since Nov 10Pushed 12y ago17 watchersCompare

[ Source](https://github.com/newscoop/EWZRecaptchaBundle)[ Packagist](https://packagist.org/packages/newscoop/recaptcha-bundle)[ Docs](https://github.com/newscoop/EWZRecaptchaBundle)[ RSS](/packages/newscoop-recaptcha-bundle/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (1)Versions (8)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.0.*`.

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:

```
