Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 560 Bytes

File metadata and controls

28 lines (22 loc) · 560 Bytes

Installation

How to include

Installing the Plugin is pretty much as with every other CakePHP Plugin.

Put the files in Plugin/Mailchimp, using Packagist/Composer:

composer require dereuromark/cakephp-mailchimp:1.0.*

which will add the following to your composer.json file:

"require": {
	"dereuromark/cakephp-mailchimp": "1.0.*"
}

Details @ https://packagist.org/packages/dereuromark/cakephp-mailchimp

This will load the plugin (within your boostrap file):

Plugin::load('Mailchimp');

or

Plugin::loadAll(...);