Hi
We need to upgrade a specific extension using composer, as the extension is inside vendor folder.
Would you tell me the right way to do it?
Solved! Go to Solution.
You should upgrade extension using composer.
See composer.json file on the root of the extension to find the package name.
Run the composer update command line to upgrade:
Example:
composer update vendor/extension
Thanks
Hi @Vimal Kumar @ChandrakeshK ,
Thanks for your replies.
I have accidentaly updated the extension by changing the version and running 'bin/magento setup:upgrade' on a testing site.
As this is using GitHub we don't really change files on their live site.
There is no files under 'vendor' folder on the repository.
Should we do the same on the live site? I am worried about down time.
Hi @mlacey
You definitely need to run command on server.
If we don't run php bin/magento setup:upgrade command on the live server. Database will never know then this extension is upgraded.
There are any entry exist in database table of extension version which is running.
You can check in "setup_module" table in the database.