catcode-nl / module-environment-information
Magento 2 module that can show environment information
Installs: 162
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:magento2-module
pkg:composer/catcode-nl/module-environment-information
Requires
- php: >=8.1.0
- magento/product-community-edition: ^2.4
This package is not auto-updated.
Last update: 2025-12-15 08:58:14 UTC
README
This is a Magento 2 module that can be used to display environment information on your webshop.
The module was initially written to display the current environment (for example: DEV), so that it is easier to see you
are not on Production when executing tests.
Configuration
To configurate the module add the following into app/etc/env.php:
'catcode' => [ 'environment_information' => [ 'enabled' => 1, 'environment_name' => 'DEV' ] ],
When 'enabled' is set to 1, the information is being displayed on both front and backend of the store.
The 'environment_name' is the label that will be displayed, when not set this will default to UNKNOWN.