Commit 9996fb05 authored by Gabriel Carleton-Barnes's avatar Gabriel Carleton-Barnes
Browse files

Revert "Remove ludwig support"

This reverts commit 1016ba1e.
parent 14d0534c
Loading
Loading
Loading
Loading
+24 −2
Changes for README.md: 24 added lines, 2 removed lines.
Original line number Diff line number Diff line
@@ -88,8 +88,30 @@ INSTALLATION
 required by mailchimp: `composer require drupal/mailchimp`

 * In case you have manually downloaded this module, then you will need to
 install the [thinkshout/mailchimp-api-php](https://github.com/thinkshout/mailchimp-api-php) library manually as well. Use composer:
 `composer require thinkshout/mailchimp-api-php`
 install the thinkshout/mailchimp-api-php library manually as well:

   * Use composer: `composer require thinkshout/mailchimp-api-php`

   * Or if you cannot use composer, another option is to install it using the
   Ludwig module.


### Manual install using the Ludwig module
Composer is the recommended way to install and maintain a site. Site
administrators using Ludwig need to be careful when combining modules that
depend on external libraries, since there are no safeguards against incompatible
library versions or overlapping requirements.

Steps:

  1. Download and install the Ludwig module.
     https://www.drupal.org/project/ludwig

  2. Download and install the Mailchimp module.

  3. Ludwig generates a listing of libraries required by those modules. The
     Packages page at admin/reports/packages provides a download link for each
     missing library along with the paths where they should be placed.


CONFIGURATION

ludwig.json

0 → 100644
+8 −0
Changes for ludwig.json: 8 added lines, 0 removed lines.
Original line number Diff line number Diff line
{
  "require": {
    "thinkshout/mailchimp-api-php": {
      "version": "v2.0.0",
      "url": "https://github.com/thinkshout/mailchimp-api-php/archive/v2.0.0.zip"
    }
  }
}