manhattan / mailchimp-bundle
Add validation to a form based on a Mailchimp response
Package info
github.com/frodosghost/MailchimpBundle
Type:symfony-bundle
pkg:composer/manhattan/mailchimp-bundle
dev-master
2015-04-21 00:30 UTC
Requires
- php: >=5.3.2
- ahmedsamy/hype-mailchimp-bundle: dev-master
- symfony/framework-bundle: >=2.3
This package is auto-updated.
Last update: 2026-02-27 01:20:48 UTC
README
Bundle adds the ability to use Mailchimp bundle within validation to submit and return errors to users as validation messages.
How
-
Add this bundle to the composer file:
{ "require": { ... "manhattan/mailchimp-bundle": "dev-master" } } -
Add this bundle to your app kernel:
// app/AppKernel.php public function registerBundles() { return array( // ... new MZ\MailChimpBundle\MZMailChimpBundle(), new Manhattan\MailchimpBundle\ManhattanMailchimpBundle(), // ... ); }