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
Requires
- php: >=5.3.2
- ahmedsamy/hype-mailchimp-bundle: dev-master
- symfony/framework-bundle: >=2.3
This package is auto-updated.
Last update: 2024-10-26 21:57:40 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(), // ... ); }