承接 robole/sulu-form-captcha-bundle 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

robole/sulu-form-captcha-bundle

最新稳定版本:v1.1.0

Composer 安装命令:

composer require robole/sulu-form-captcha-bundle

包简介

Extension for SuluFormBundle that adds third-party captcha providers

README 文档

README

GitHub release Supports Sulu 2.6 or later

SuluFormCaptchaBundle

Extension for SuluFormBundle that adds third-party captcha providers.

Installation

This bundle requires PHP 8.2 or later.

  1. Open a command console, enter your project directory and run:
composer require robole/sulu-form-captcha-bundle

If not automagically done, add the bundle to your config/bundles.php file:

return [
    //...
    Robole\SuluFormCaptchaBundle\SuluFormCaptchaBundle::class => ['all' => true],
];
  1. Install and configure one or mutiple captcha providers from below. Once installed, each provider can be selected in the Sulu form editor.

Use with Cloudflare Turnstile

  1. Install PixelOpen Cloudflare Turnstile Bundle:
composer require pixelopen/cloudflare-turnstile-bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

return [
    //...
    PixelOpen\CloudflareTurnstileBundle\PixelOpenCloudflareTurnstileBundle::class => ['all' => true]
];
  1. Visit Cloudfare, create a site key and secret key, save the keys to .env and link via service configuration in config/packages/pixel_open_cloudlflare_turnstile.yaml:
pixel_open_cloudflare_turnstile:
  key: "%env(TURNSTILE_KEY)%"
  secret: "%env(TURNSTILE_SECRET)%"

For more information, refer to the bundle repository.

Use with Gregwar Captcha

  1. Install Gregwar CaptchaBundle:
composer require gregwar/captcha-bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

return [
    //...
    Gregwar\CaptchaBundle\GregwarCaptchaBundle::class => ['all' => true]
];
  1. Customize the global bundle configuration in config/packages/gregwar_captcha.yaml:
gregwar_captcha:
  width: 160
  height: 50

For more information on configuration and form theming, refer to the bundle repository.

Use with Friendly Captcha

Attention: This bundle currently only supports Friendly Captcha v1!

  1. Install CORS Friendly Captcha Bundle:
composer require cors/friendly-captcha-bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

return [
    //...
    CORS\Bundle\FriendlyCaptchaBundle\CORSFriendlyCaptchaBundle::class => ['all' => true],
];
  1. Visit Friendly Captcha, create a site key and secret key, save the keys to .env and link via service configuration in config/packages/cors_friendly_captcha.yaml:
cors_friendly_captcha:
  sitekey: "%env(FRIENDLY_SITEKEY)%"
  secret: "%env(FRIENDLY_SECRET)%"
  use_eu_endpoints: true
  1. Import the widget via npm in your application or load from CDN, e.g. in base.html.twig:
<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/friendly-challenge@0.9.18/widget.module.min.js"
  async
  defer
></script>
<script
  nomodule
  src="https://cdn.jsdelivr.net/npm/friendly-challenge@0.9.18/widget.min.js"
  async
  defer
></script>

For more information, refer to the bundle repository.

Use with ALTCHA

  1. Install AltchaBundle:
composer require tito10047/altcha-bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

return [
    //...
    Tito10047\AltchaBundle\AltchaBundle::class => ['all' => true]
];
  1. Configure AltchaBundle as described in the README.md.

Theming

This bundle provides a minimal theme.html.twig which extends @SuluForm/themes/basic.html.twig. Use it like this:

<body>
    {% if content.form %}
        {% if app.request.get('send') != 'true' %}
            {% form_theme content.form '@SuluFormCaptcha/theme.html.twig' %}
            {{ form(content.form) }}
        {% else %}
            {{ view.form.entity.successText|raw }}
        {% endif %}
    {% endif %}
</body>

To customize the default blocks (or to customize the default blocks provided by SuluFormBundle), extend @SuluFormCaptcha/theme.html.twig similar as described in SuluFormBundle theming.md.

Scripts

  • To check the coding standards, run:

    composer php-cs

  • To apply coding standards, run:

    composer php-cs-fix

统计信息

  • 总下载量: 43
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-17