Yandex Smart Captcha Symfony 6.1+ integration
Install library via composer:
composer require sc0/yandex-smartcaptcha-bundle
# bundles.php
<?php
return [
// ...
Sc\YandexSmartCaptchaBundle\YandexSmartCaptchaBundle::class => ['all' => true],
// ...
];
# config.yaml
yandex_smart_captcha:
secret_key: foo
site_key: bar
use Sc\YandexSmartCaptchaBundle\Form\Type\YandexSmartCaptchaType;
// ...
$builder->add('captcha', YandexSmartCaptchaType::class);
// ...
# YourType.php
$builder->add('captcha', YandexSmartCaptchaType::class, [
'block_prefix' => 'my_own_captcha_wrapper',
]);
{% block my_own_captcha_wrapper_widget %}
<div class="my-captcha-container">
{{ block('yandex_smartcaptcha_widget') }}
</div>
{% endblock my_own_captcha_wrapper_widget %}