Update Google Shopping Using Artifact Repository
Looking for Magento 2 Google Shopping feed? View the full Magento 2 Google Shopping feed page to explore features, configuration options, and pricing.
Installing a Magento 2 Module Using an Artifact Repository
Step 1: Download and Upload the ZIP File
Download the module ZIP file from your customer account and upload it to
composer/artifact (as a ZIP file).
Step 2: Configure Composer
Edit your Magento project's composer.json file and add the artifact repository:
{
"repositories": {
"extension-artifact": {
"type": "path",
"url": "composer/artifact/*"
}
}
}
Step 3: Install the Module
Run the following commands to install the module via Composer:
composer update magmodules/m2-googleshopping--no-update
Step 4: Enable the Module
Activate the module and update Magento:
php bin/magento module:enable Magmodules_GoogleShopping
php bin/magento setup:upgrade
php bin/magento cache:flush
Step 5: Deploy in Production Mode (Optional)
If you are in production mode, compile dependencies and deploy static content:
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
Conclusion
You have now successfully installed the Magento 2 module using an artifact repository.
For a complete overview of features and configuration options, see Magento 2 Google Shopping feed.
