├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── composer.json ├── phpunit.xml.dist ├── src ├── Loader.php ├── Retriever.php └── functions.php └── tests ├── LoaderTest.php ├── RetrieverTest.php ├── bootstrap.php └── stubs ├── invalid.env ├── override.env ├── ref.env └── test.env /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://paypal.me/ji10'] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.1.0 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/src/Loader.php -------------------------------------------------------------------------------- /src/Retriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/src/Retriever.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/src/functions.php -------------------------------------------------------------------------------- /tests/LoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/tests/LoaderTest.php -------------------------------------------------------------------------------- /tests/RetrieverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/tests/RetrieverTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/stubs/invalid.env: -------------------------------------------------------------------------------- 1 | &!=/=D$/ 2 | -------------------------------------------------------------------------------- /tests/stubs/override.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/tests/stubs/override.env -------------------------------------------------------------------------------- /tests/stubs/ref.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/tests/stubs/ref.env -------------------------------------------------------------------------------- /tests/stubs/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-env/HEAD/tests/stubs/test.env --------------------------------------------------------------------------------