Dot notation access of configuration, as well as overrides via $_ENV
Dot notation access of configuration, as well as overrides via $_ENV (environment variables)
This is the new way to access configuration. Instead of using Config::inst()->get('Email', 'admin_email')
you can now use singleton('env')->get('Email.admin_email')
. But that is not its real feature.
singleton('env')->get('Email.site_emails.staff')
singleton('env')->get('FacebookPage|Facebook.admin_id')
For development, you can use a .env.php file to override variables, but it requires some manual installation.
You need to install the package: vlucas/phpdotenv via composer.json, and then follow the instructions in that package.
If you want the environment to work, you should add the following to your ss_environment.php
:
require_once BASE_PATH . '/mwm-env/code/dev/Environment.php';
Add the following to your composer.json file
"require" : {
"milkyway-multimedia/ss-mwm-env": "~0.3"
}
Module rating system helping users find modules that are well supported. For more on how the rating system works visit Module standards
Score not correct? Let us know there is a problem
None