shadowprince / forman-recaptcha
Recaptcha plugin for shadowprince/forman
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/shadowprince/forman-recaptcha
Requires
- php: >=5.2.0
- recaptcha/php5: 1.0.0
- shadowprince/forman: >=0.2
This package is not auto-updated.
Last update: 2025-10-07 06:32:43 UTC
README
Forman-Recaptcha - plugin for forman, adding field Recaptcha for easy recaptcha integration. It validates on validate()
method, sets errors; you just need to add new \Forman\Field\Recaptcha()
to your form to use it.
$form = new \Forman\Form( new \Forman\Field\Value("name"), (new \Forman\Field\Recaptcha())->setKeys("private", "public") );
You can set default keys by
\Forman\Field\Recaptcha::defaultKeys("private", "public");
Uses recaptcha/php5.