Upgrade modules
To update or upgrade a module or extension:
-
Download the updated file from Marketplace or another extension developer. Take note of the module-name and version.
-
Export the contents to your Magento root.
-
If a Composer package exists for the module, run one of the following.
Update per module name:
1
composer update vendor/module-name
Update per version:
1
composer require vendor/module-name ^x.x.x
-
Run the following commands to upgrade, deploy, and clean the cache.
1 2 3
bin/magento setup:upgrade --keep-generated bin/magento setup:static-content:deploy bin/magento cache:clean