How can I check the current version of my Amasty extension?

How can I check the current version of my Amasty extension?

Verifying the version of an Amasty extension can be done through multiple methods.

Method #1. Magento admin

You can easily check the version of an installed extension through the Magento admin panel. For that, navigate to Stores → Configuration → Amasty Extensions → Products and Notifications → Installed Extensions. There you will find the list of your Amasty extensions along with their current versions:



Method #2. Composer file

It's also possible to find the version of the extension installed on your Magento in its composer.json file. It's located at:
⇾ Magento-root-directory/vendor/amasty/[extension-name] - for packages installed via Composer;
 Magento-root-directory/app/code/Amasty/[ExtensionName] - for packages installed manually.



Method #3. CLI commands

To view the contents of the composer.json file, you can use the following command in the command-line interface (CLI)

cat vendor/amasty/[extension-name]/composer.json

Alternatively, you can use the below command to directly retrieve the installed version:

composer show -a amasty/[extension-name]


      • Related Articles

      • How to install a specific version of the extension?

        Kindly note that older versions of the modules may miss some features that are presented on their product pages. Moreover, we can't guarantee their stability, correct performance, and effective result. We don't provide support for older versions of ...
      • How to update an Amasty extension?

        Below, you may find the instructions on installing an update to an Amasty extension. Choose the appropriate method of the extension update – via Composer or via manual file upload. The choice of the method corresponds to the initial way the extension ...
      • How to uninstall an extension?

        Preparation Before making any changes to your Magento instance, either live or a dev site, make sure to create backups. This way you can secure the changes in case something goes wrong in the process. So that the uninstall goes smoothly, it's ...
      • How to install an Amasty extension?

        There are two ways of installing an extension on Magento 2. It's recommended to use one and the same installation method for all Amasty extensions. Composer installation Step 1. To download and install Magento modules, the vendor repository is ...
      • Composer doesn’t allow me to install the latest update of the module. Is there a solution for it?

        There are two possible reasons why the composer is not fetching the latest version of the module. The first one is that the module package is loaded from caches - composer cannot see the latest available version, so it loads the latest that is ...