stefandoorn/sylius-recaptcha-plugin

Recaptcha plugin for Sylius.

Installs: 18 663

Dependents: 1

Suggesters: 0

Security: 0

Stars: 8

Watchers: 2

Forks: 4

Open Issues: 0

Type:sylius-plugin


README

License Version Build Status

Features

  • Add Recaptcha to Contact Form and Registration Page to prevent spam

Installation

  1. Require plugin with composer:

    composer require stefandoorn/sylius-recaptcha-plugin:^1.0@dev
  2. Follow installation instructions from Recaptcha bundle: https://github.com/excelwebzone/EWZRecaptchaBundle

  3. Add plugin class to your AppKernel.

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

    or to your bundles.php:

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