Reputation: 210
I want to install https://marketplace.oroinc.com/orocrm/extension/mailchimp-integration/
How to fill the following cmd,
composer require <extension name>:<extension-version> –prefer-dist –update-no-dev
Upvotes: 0
Views: 138
Reputation: 1956
Extension name can be found in an extension page at the marketplace: As for the version, you can skip it and run the command like this:
composer require oro/mailchimp --prefer-dist --update-no-dev
As a result, the composer will automatically install the latest available version, that is compatible with your application.
Alternatively, you can check all the available versions at https://satis.oroinc.com.
Upvotes: 1