dev-module-list
List all Magento 2 modules and their activation status to manage module visibility and functionality in your development environment.
Instructions
List all Magento 2 modules and their status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
disabled | No | Show only disabled modules | |
enabled | No | Show only enabled modules | |
format | No | Output format | table |
Input Schema (JSON Schema)
{
"properties": {
"disabled": {
"description": "Show only disabled modules",
"type": "boolean"
},
"enabled": {
"description": "Show only enabled modules",
"type": "boolean"
},
"format": {
"default": "table",
"description": "Output format",
"enum": [
"table",
"json",
"csv"
],
"type": "string"
}
},
"type": "object"
}