nsmithuk / zf-config-dump
Dumps an application's config to the terminal
Requires
- php: >=5.4
- symfony/var-dumper: ^3.0
- zendframework/zendframework: ^2.0
This package is not auto-updated.
Last update: 2024-11-15 18:32:51 UTC
README
A Zend Framework 2 module that provides a simple method for dumping an application's current configuration array to the commend line.
This is useful when some of the application’s configuration is set via environment variables, as is common when using container services.
Installing
zf-config-dump can be installed with Composer. Run this command:
composer require nsmithuk/zf-config-dump
Then you need to add ZFConfigDump
to your config/application.config.php file under the modules
key.
Usage and example output
Once installed, call the following to get the whole config output:
php public/index.php dump-config
If you only want to return the config for a specific key, you can add a filter. For example, to just return the config for your database, you can call:
php public/index.php dump-config database
You can also use dot notation to access deeper keys within the config. For example, to access the value set for just the database adapter:
php public/index.php dump-config database.adapter