The Quick Checkout extension for Adobe Commerce and Magento Open Source can be installed with Composer keys, which are linked to the Commerce account mageid
provided in the signup process. Composer uses these keys during the initial installation of Adobe Commerce, or in situations in which the Composer keys were not previously saved to the auth.json
file.
See get your authentication keys topic for more information about obtaining Composer keys.
There are two ways to install this extension—for Adobe Commerce on cloud infrastructure or on-premises installations. These methods require you to use the command-line interface (CLI).
Before you install the extension, ensure that the minimum-stability
field in your composer.json
file is set to "stable"
:
"minimum-stability": "stable"
You can install the Quick Checkout extension for both Adobe Commerce on cloud infrastructure and on-premises instances.
This method is used for installing the Quick Checkout extension for a Commerce Cloud instance.
On your local workstation, change to the Cloud project root directory.
Update your composer.json
file:
composer require magento/quick-checkout --no-update
Update dependencies and install the extension:
composer update
The composer update
command updates all dependencies. If you do not want to update all dependencies at the same time, use this command instead: composer update magento/quick-checkout
.
Commit and push your changes.
This method is used for installing the Quick Checkout extension for an On-premises instance.
Add the Quick Checkout module to the require
section of the composer.json
file:
composer require magento/quick-checkout --no-update
Update dependencies and install the extension:
composer update
The composer update
command updates all dependencies. If you do not want to update all dependencies at the same time, use this command instead: composer update magento/quick-checkout
.
Upgrade Adobe Commerce:
bin/magento setup:upgrade
Clear the cache:
bin/magento cache:clean
Commit changes.
Update your on-premises instance to ensure the committed code is deployed.
When we release a new version of the Quick Checkout, you can easily upgrade your extension.
To obtain the most recent version of the package:
composer update
The composer update
command updates all dependencies. If you do not want to update all dependencies at the same time, use this command instead: composer update magento/quick-checkout
.
Commit and push your changes.
You may see errors when attempting to install the Quick Checkout extension.
If you encounter any issues during the Quick Checkout installation process, see Troubleshoot Quick Checkout issues in the Adobe Commerce Help Center.
See the prerequisites topic for more information.