Question

How to check the third party plugin version without any code in Magento 2?

Also, please let me know what exactly is Setup version and Module version.

Was it helpful?

Solution

Follow below path for check module Setup version and Module Version:

Setup version: setup_version is your module’s database schema version.

Go to the module.xml file in module and find "setup_version"

File path: app/code/Namespace/Module/etc/module.xml

setup_version="1.1.4"

Module Version: version lists the version of the component.

Go to the composer.json file in module root directory and find "version"

File path: app/code/Namespace/Module/composer.json

"version": "1.1.4",

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top