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
Requires
- php: >=7.1
- doctrine/doctrine-bundle: ^1.8
- doctrine/orm: ^2.5
- gregwar/captcha: ^1.1
- symfony/form: ^3.4|^4.0
- symfony/framework-bundle: ^3.4|^4.0
This package is auto-updated.
Last update: 2024-11-07 04:57:41 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"