glavweb/captcha-bundle

There is no license information available for the latest version (v0.2.0) of this package.

Symfony GlavwebCaptchaBundle

v0.2.0 2019-06-06 16:38 UTC

This package is auto-updated.

Last update: 2024-04-07 03:40:02 UTC


README

Get the bundle using composer

Add GlavwebCaptchaBundle by running this command from the terminal at the root of your Symfony project:

php composer.phar require glavweb/captcha-bundle

Enable the bundle

To start using the bundle, register the bundle in your application's kernel class:

// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Glavweb\CaptchaBundle\GlavwebCaptchaBundle(),
        // ...
    );
}

Configure the bundle

Add config:

#  app/config/config.yml
glavweb_captcha: ~

Add routing:

#  app/config/routing.yml

glavweb_captcha_routing:
    resource: "@GlavwebCaptchaBundle/Resources/config/routing.yml"