stefandoorn/sylius-recaptcha-plugin

Sylius 的 Recaptcha 插件。


README

License Version Build Status

特性

  • 将 Recaptcha 添加到联系表单和注册页面以防止垃圾邮件

安装

  1. 使用 composer 安装插件

    composer require stefandoorn/sylius-recaptcha-plugin:^1.0@dev
  2. 遵循 Recaptcha 包的安装说明:https://github.com/excelwebzone/EWZRecaptchaBundle

  3. 将插件类添加到您的 AppKernel

    $bundles = [
       new \StefanDoorn\SyliusRecaptchaPlugin\SyliusRecaptchaPlugin(),
    ];

    或者添加到您的 bundles.php

    return [
       // ...
       StefanDoorn\SyliusRecaptchaPlugin\SyliusRecaptchaPlugin::class => ['all' => true],
    ];