tds / mailchimp-bundle
Symfony service wrapper for pacely/mailchimp-apiv3
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tds/mailchimp-bundle
Requires
- php: >=5.3.9
- pacely/mailchimp-apiv3: dev-master
- symfony/framework-bundle: ~2.3|~3.0
This package is not auto-updated.
Last update: 2025-09-28 00:51:19 UTC
README
TDSMailchimpBundle is just a service wrapper for Mailchimp API v3 - PHP Wrapper by Pacely
Installation
Step 1: Download Bundle using composer
Require the bundle with composer:
$ composer require tds/mailchimp-bundle "dev-master"
Composer will install the bundle to your project's vendor directory.
Step 2: Enable the bundle
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new TDS\MailchimpBundle\MailchimpBundle(),
// ...
);
}
Step 3: Configure your application's config.yml
tds_mailchimp:
api_key: 'your api key should be here'
Step 4: Read the docs
Investigate the main bundle documentation
License
This bundle is under the MIT license. See the complete license in the bundle: