https://github.com/bckp/environment-adapter
Simple bckp/environment adapter for Nette framework
https://github.com/bckp/environment-adapter
Last synced: 3 months ago
JSON representation
Simple bckp/environment adapter for Nette framework
- Host: GitHub
- URL: https://github.com/bckp/environment-adapter
- Owner: bckp
- License: mit
- Created: 2023-12-04T18:24:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-04T18:44:49.000Z (over 1 year ago)
- Last Synced: 2025-01-15T15:48:29.468Z (4 months ago)
- Language: PHP
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Bckp/Environment-adapter
Adapter for Nette so you can use *.env config files.[](https://coveralls.io/github/bckp/environment-adapter?branch=master)
[](https://github.com/bckp/environment-adapter/actions)
[](https://packagist.org/packages/bckp/environment-adapter)
[](https://scrutinizer-ci.com/g/bckp/environment-adapter/?branch=master)
[](https://packagist.org/packages/bckp/environment-adapter)
[](https://github.com/bckp/environment-adapter/blob/master/license.md)Installation
------------The best way to install Bckp/Environment-adapter is using [Composer](http://getcomposer.org/):
```sh
$ composer require bckp/environment-adapter
```## Development
This package is currently maintaining by these authors.
## How to use
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
```text
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.
### Example file
```text
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
```text
SERVICE_USER=someuser
SERVICE_PASSWORD=supersecret
SERVICE_ARRAY=1|2|3|4
```will be translated to if none ENV
```php
[
'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],
]
```