We recommend that you upgrade when we have a major release, such as 3.0.0.
To stay up to date on the released fixes and features, subscribe to our releases on GitHub.
The integration effort involved in upgrading depends on whether you have made any customizations to the plugin.
There are different steps to follow for:
Default Integration
- In your command-line tool, go to the Shopware 6 project root directory.
- Run the following command:
composer require adyen/adyen-shopware6: VERSION_TO_UPGRADE
For example, running
composer require adyen/adyen-shopware6: 3.0.0
will upgrade the plugin to v3.0.0. - Run the database migration scripts:
bin/console database:migrate --all AdyenPaymentShopware6
- Run the update script:
bin/console plugin:update AdyenPaymentShopware6
Customized Integration
- Extract any custom code you have added to the plugin.
- In your command-line tool, go to the Shopware 6 project root directory.
- Run the following command:
composer require adyen/adyen-shopware6: VERSION_TO_UPGRADE
For example, running
composer require adyen/adyen-shopware6: 3.0.0
will upgrade the plugin to v3.0.0. - Run the database migration scripts:
bin/console database:migrate --all AdyenPaymentShopware6
- Run the update script:
bin/console plugin:update AdyenPaymentShopware6
- Check if the custom code is compatible with the new version and apply any changes if needed.