├── .editorconfig ├── .env ├── .gitignore ├── LICENSE ├── README.md ├── banner.png ├── canvas.yaml ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Env.php ├── EnvServiceProvider.php ├── Events │ └── EnvFileChangedEvent.php ├── Exceptions │ ├── KeyAlreadyExistsException.php │ └── KeyNotFoundException.php ├── Facades │ ├── Env.php │ └── EnvLine.php ├── Line.php ├── Listeners │ └── EnvFileChanged.php └── Providers │ └── EventServiceProvider.php └── tests ├── TestCase.php └── Unit └── EnvTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/banner.png -------------------------------------------------------------------------------- /canvas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/canvas.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Env.php -------------------------------------------------------------------------------- /src/EnvServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/EnvServiceProvider.php -------------------------------------------------------------------------------- /src/Events/EnvFileChangedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Events/EnvFileChangedEvent.php -------------------------------------------------------------------------------- /src/Exceptions/KeyAlreadyExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Exceptions/KeyAlreadyExistsException.php -------------------------------------------------------------------------------- /src/Exceptions/KeyNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Exceptions/KeyNotFoundException.php -------------------------------------------------------------------------------- /src/Facades/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Facades/Env.php -------------------------------------------------------------------------------- /src/Facades/EnvLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Facades/EnvLine.php -------------------------------------------------------------------------------- /src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Line.php -------------------------------------------------------------------------------- /src/Listeners/EnvFileChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Listeners/EnvFileChanged.php -------------------------------------------------------------------------------- /src/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/src/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/EnvTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebuglab/laravel-env/HEAD/tests/Unit/EnvTest.php --------------------------------------------------------------------------------