This module adds a dashboard to review all installed extensions in the Magento admin (Magento 2.3.0+ for now only).
We strongly recommend to always make changes to a Magento 2 site through a development environment that runs in the Developer Mode:
bin/magento deploy:mode:set developerAdd this Git repository to composer and then install the composer package:
composer config repositories.extdndash git https://github.com/extdn/extension-dashboard-m2.git
composer require extdn/extension-dashboard-m2:dev-masterNext, enable the module:
bin/magento module:enable Extdn_ExtensionDashboard
bin/magento setup:upgradeNext, follow the usual procedure to push changes from the development environment to production (for example with bin/magento deploy:mode:set production).
This dashboard is being fed through feeds: Either a CSV-file or a remote resource that allows you to define version-information. Currently, the following is supported:
- Define a new DI VirtualType (see
di.xml) to use theComposerFeedProviderto load information from Packagist. - Use the
CsvFeedProviderto load information from a local CSV file. - Add a custom provider to the listing of providers.
- Move extension feeds to different submodules?
- Automatically fetch information from Packagist on existing extensions, if available.

