Bzium
Bzium

Reputation: 1

Where find Magento 2 modules list

My task is estimate costs of technical implementation of Magento 2 (Open Source version) for my client. To to that I need to find list of modules / features installed by default. Where I can find them ??

Thanks for your help :)

Upvotes: 0

Views: 1799

Answers (3)

Dev Usman
Dev Usman

Reputation: 21

  1. Log in to Magento 2 installation root folder: use SSH via Terminal or Putty.cd;

  2. Run below command to see a full list of enabled or disabled Magento 2 extensions:

    php bin/magento module:status

You’ll get the list as follows:

module listing

Upvotes: 2

Saeed Sanaeefar
Saeed Sanaeefar

Reputation: 11

Magento 2.3 System > Web Setup Wizard > Module Manager

Magento 2.2 Stores > Configuration > Advanced

Upvotes: 1

susushie
susushie

Reputation: 11

You can check all installed modules with the bin/magento module:status CLI command. Also, the list of installed modules can be found in app/etc/config.php file. Hope this helps.

Upvotes: 0

Related Questions