Adapter for Nette so you can use *.env config files.
The best way to install Bckp/Environment-adapter is using Composer:
$ composer require bckp/environment-adapter
This package is currently maintaining by these authors.
For use this adapter, you need to use Bckp/Configurator instead of Nette one. It will autoregister ENV extension support. After that, you can simply link some-name.env
file and nette will inject env variables into %env%.
The expected syntax is
name_of_env_variable: ::{string|int|float|bool}(default: {string}, hidden: {true|false})
name_of_array_variable: ::array(separator: {string}, hidden: {true|false}, cast: {int|float|bool|string})
first entry is name of ENV variable, this will add %env.name_of_env_variable%
to the parameters and get value using getenv('NAME_OF_ENV_VARIABLE');
next is ::
that will tell adapter, we are working with entity, this is just shortcut to force nette get arguments using internal mechanism.
after that, we have cast
part, this tells adapter, what type of variable he should cast to, usefull as env know only strings, with this, you can have INTs, FLOATs, BOOLs and even ARRAY of INT, FLOAT, STRING, BOOL.
attributes inside
default: that is fallback, if no value is found using getenv.
hidden: if variable must remain secret, or we can burn it into generated container file (if we have password, we do not want to have it stored in PHP file, but kept it in ENV only)
cast: only for Array, cast values to specific type
separator: only for Array, used for explode
if you keep order of arguments same as Environment class expect, you can omit their names.
service_user: ::string(secret_user)
service_password: ::string(secret_password, true)
service_port: ::int(1234)
service_nonstring: ::nonstring(1234)
service_active: ::bool(\'false\')
service_array: ::array(cast: int)
with .env
SERVICE_USER=someuser
SERVICE_PASSWORD=supersecret
SERVICE_ARRAY=1|2|3|4
will be translated to if none ENV
[
'service_user' => 'someuser',
'service_password' => Bckp\Environment::string('SERVICE_PASSWORD', 'secret_password'),
'service_port' => 1234,
'service_nonstring' => '1234',
'service_active' => false # notice string false is translated to the boolean correctly
'service_array' => [1,2,3,4],
]