Install Quick Checkout

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).

Update minimum-stability setting

Before you install the extension, ensure that the minimum-stability field in your composer.json file is set to "stable":

"minimum-stability": "stable"

Install the extension

You can install the Quick Checkout extension for both Adobe Commerce on cloud infrastructure and on-premises instances.

Adobe Commerce on cloud infrastructure

This method is used for installing the Quick Checkout extension for a Commerce Cloud instance.

  1. On your local workstation, change to the Cloud project root directory.

  2. Update your composer.json file:

    code language-bash
    composer require magento/quick-checkout --no-update
    
  3. Update dependencies and install the extension:

    code language-bash
    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.

  4. Commit and push your changes.

On-premises

This method is used for installing the Quick Checkout extension for an On-premises instance.

  1. Add the Quick Checkout module to the require section of the composer.json file:

    code language-bash
    composer require magento/quick-checkout --no-update
    
  2. Update dependencies and install the extension:

    code language-bash
    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.

  3. Upgrade Adobe Commerce:

    code language-bash
    bin/magento setup:upgrade
    
  4. Clear the cache:

    code language-bash
    bin/magento cache:clean
    
  5. Commit changes.

  6. Update your on-premises instance to ensure the committed code is deployed.

Upgrade the extension

When we release a new version of the Quick Checkout, you can easily upgrade your extension.

  1. To obtain the most recent version of the package:

    code language-bash
    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.

  2. Commit and push your changes.

Troubleshooting

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.

Prerequisites

See the prerequisites topic for more information.

recommendation-more-help
a1fe9c72-69b5-4638-a9e2-ac500d2953b5