PHPackages                             dmishh/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. dmishh/recaptcha-bundle

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

dmishh/recaptcha-bundle
=======================

reCAPTCHA support for Symfony2 with easy-to-use integration to Security Component.

1.0.1(11y ago)412.3k3[2 issues](https://github.com/dmishh/RecaptchaBundle/issues)MITPHP

Since Mar 3Pushed 11y ago3 watchersCompare

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

READMEChangelogDependencies (5)Versions (7)Used By (0)

reCAPTCHA support for Symfony2
==============================

[](#recaptcha-support-for-symfony2)

Features
--------

[](#features)

- Easy-to-use
- Service-oriented architecture
- Integration into forms
- Integration into Security Component — for protecting login form with reCAPTCHA
- Independent reCAPTCHA API realization ([Recaptcher](https://github.com/dmishh/Recaptcher) by default)
- Both, PHP and Twig template engines support

Installation using Composer
---------------------------

[](#installation-using-composer)

1. Add the following to your `composer.json` file:

    ```
    // composer.json
    {
        // ...
        "require": {
            // ...
            "dmishh/recaptcha-bundle": "1.0.*"
        }
    }
    ```
2. Update dependencies, run from command line:

    ```
    php composer.phar update
    ```
3. Register the bundle in your `AppKernel.php` file:

    ```
