tflori/envparser

Maintainers

👁 tflori

Package info

github.com/tflori/envparser

pkg:composer/tflori/envparser

Statistics

Installs: 629

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 1

v1.0.0 2020-08-28 11:19 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 0a047d0fb99c68ac730ea004d31942baa90bfcb8


README

👁 .github/workflows/push.yml
👁 Test Coverage
👁 Maintainability
👁 Latest Stable Version
👁 Total Downloads
👁 License

A small library that is just reading an environment file in bash syntax and returns an array equal to that what you would get sourcing this file in a bash environment.

Features

Declarations of variables

# a string without spaces
STRING1=foo

# a string with spaces surrounded by quotes
STRING2="foo's bar"
STRING3='"$quote" - $author' # string '"$quote" - $author'
STRING4=foo"' "bar # string 'foo\' bar'

# variable replacement (assuming user=thomas)
VAR1=$user # string 'thomas'
VAR2="$user's profile" # string 'thomas\'s profile'
VAR3="${APP_ENV-production}" # string 'production'

# array handling
ARRAY1=(foo bar) # array ['foo', 'bar']
ARRAY2=($int 6 7) # array [42, 6, 7]
ARRAY3=() # array []
ARRAY5[0]=foo # array ['foo']
ARRAY5[1]=bar # array ['foo', 'bar']

A lot of things available in bash are not possible in this library but the important ones will be. When you find something is missing please open a feature request on github or create a merge request.

Using Environment

All variables available in $_ENV and getenv() (or a passed array) are available inside the parsed file.

Conversion of variables

In bash every variable is a string like in *nix every variable is a file and inside is a string. While it is very useful on this level we don't want that inside an application.

### null (case insensitive)
NULL1= # null (bash typical)
NULL2=null # null
NULL3="null" # null
STRING1='null' # string 'null'

### numbers (checked with is_numeric)
INT=42 # int 42
INT2="23" # int 23
STRING2='42' # string '42'
FLOAT=23.2 # float 23.2
FLOAT2="42.1" # float 42.1
STRING3='23.2' # string '23.2'

### true (case insensitive)
BOOL_TRUE=true # bool true
STRING4='true' # string 'true'

### ATTENTION! In php: ('false' != false)
BOOL_FALSE=false # bool false
STRING5='false' # string 'false'

### json (you should avoid json in environment files. it is just sugar; ext-json required)
OBJECT='json:{"foo":"bar"}' # \stdobj ['foo' => 'bar']
ARRAY='jsonArray:{"foo":"bar"}' # array ['foo' => 'bar']

### base64 (use it for unprintable characters)
APP_KEY="base64:dzN0ICJzZWNyZXQiCg=="

Concatenation

Strings are concatenated in bash by just connecting the strings together.

STRING1="hello"' $user' # string 'hello $user'

### everything is a string when it gets concatenated
STRING2=True" Warrior" # string 'True Warrior'

Escaping

Escaping quotes works exactly the same as in bash:

STRING1="foo's \"bar\""
STRING2='foo'"'"'s "bar"'
STRING3='foo'\''s "bar"'
STRING4=$'foo\'s "bar"'