Installing, upgrading and uninstalling Payment Extension
Use the following procedures to install, upgrade, and uninstall the payment extension using Composer.
Installing the Adobe Commerce payment extension
Install the Clover Payments Adobe Commerce module using Composer. If you are using Composer for the first time, or if a Composer error appears, ensure that you saved your authentication keys.
- Place an order for the module through the Adobe Commerce Marketplace.
- Open a terminal and run the following command in your Adobe Commerce directory. If you are using Composer for the first time, or if you see a Composer error, make sure that you have saved your authentication keys.
$ composer require clover/module-payments
- Run the following commands to set up the module.
$ bin/magento setup:upgrade
$ bin/magento cache:flush
$ bin/magento cache:clean
- If you run Magento in production, run the following commands to compile and deploy the module static files.
$ bin/magento setup:di:compile
$ bin/magento setup:static-content:deploy
Important
The Adobe Commerce Clover Payments Extension for release 1.0.2 is only available in the USA and Canada. Ensure that the value of General > Currency Setup > Display Currency in the store view of Adobe Commerce matches the payment region.
Upgrading the payment extension
If you installed the Adobe Commerce extension using Composer, run the following commands to upgrade the payments extension.
$ composer remove clover/module-payments
$ composer require clover/module-payments
$ bin/magento setup:upgrade
$ bin/magento setup:di:compile
$ bin/magento setup:static-content:deploy
$ bin/magento cache:clean
Uninstalling Payment Extension
If you installed the Adobe Commerce extension using Composer, run the following commands to uninstall payments extension.
$ composer remove clover/module-payments
$ bin/magento setup:upgrade
$ bin/magento setup:di:compile
$ bin/magento setup:static-content:deploy
$ bin/magento cache:clean
Updated 27 days ago