문제

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.

도움이 되었습니까?

해결책

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",

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top