manhattan/mailchimp-bundle

Add validation to a form based on a Mailchimp response

Installs: 107

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2015-04-21 00:30 UTC

This package is auto-updated.

Last update: 2024-03-26 20:40:34 UTC


README

Bundle adds the ability to use Mailchimp bundle within validation to submit and return errors to users as validation messages.

How

  1. Add this bundle to the composer file:

     {
         "require": {
             ...
             "manhattan/mailchimp-bundle": "dev-master"
         }
     }
    
  2. Add this bundle to your app kernel:

     // app/AppKernel.php
     public function registerBundles()
     {
         return array(
             // ...
             new MZ\MailChimpBundle\MZMailChimpBundle(),
             new Manhattan\MailchimpBundle\ManhattanMailchimpBundle(),
             // ...
         );
     }