nsmithuk/zf-config-dump

Dumps an application's config to the terminal

1.0.0 2016-04-12 13:21 UTC

This package is not auto-updated.

Last update: 2024-04-19 16:01:21 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

Example output

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

Example output

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

Example output