vansari / EnvReader

PHP Environment Reader
MIT License
3 stars 0 forks source link

JsonType #6

Closed vansari closed 1 year ago

vansari commented 1 year ago

It would be helpful to have a JsonType where the user can config a more complex Value.

Expected Theme: CUSTOM_ENV="{\“property\“:\"foo\", \"values\“: [{\“bar\“: \"${ANOTHER_ENV}\"}]}“

Expected Result:

[
    'property‘ => 'foo‘,
    'values‘ => [
        [
            'bar‘ => 'another env‘,
        ],
    ],
]        

Rules: