- Issue created by @mediameriquat
- 🇦🇺Australia christopher.nolden
I had the same issue on a non-Composer site that utilizes Ludwig. I found that the ludwig.json file was not reflecting the new mailchimp-api-php library version requirement. Replacing the contents of the ludwig.json file with the below values allowed the new version to be installed and fixed the error for me.
{ "require": { "thinkshout/mailchimp-api-php": { "version": "v3.0.0-rc4", "url": "https://github.com/thinkshout/mailchimp-api-php/archive/v3.0.0-rc4.zip" } } }
- 🇮🇹Italy tiikeri
For me (composerized project - not ludwig) the problem was the minimum stability: please note that the thinkshout/mailchimp-api-php is in rc status.
Setting the minimum stability in composer.json file from stable to rc fixed the issue. - Status changed to Closed: works as designed
over 1 year ago 7:38am 6 April 2023 - 🇭🇷Croatia devad
For Composer users: Read comment #7.
For Ludwig users: Use the patch #4 here: #3257582-4: The ludwig.json file needs an update →