glavweb / captcha-bundle
Symfony GlavwebCaptchaBundle
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/glavweb/captcha-bundle
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: 2025-10-07 07:17:08 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"