├── .github └── workflows │ ├── php-cs-fixer.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.php ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── laravel-env.gif ├── phpunit.xml.dist ├── src ├── Commands │ ├── EnvDelCommand.php │ ├── EnvGetCommand.php │ ├── EnvListCommand.php │ ├── EnvSetCommand.php │ └── Traits │ │ └── CommandValidator.php ├── Env.php ├── LaravelEnvFacade.php └── LaravelEnvServiceProvider.php └── tests ├── .env.example ├── EnvArtisanTest.php └── EnvClassTest.php /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/composer.json -------------------------------------------------------------------------------- /laravel-env.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/laravel-env.gif -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Commands/EnvDelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/Commands/EnvDelCommand.php -------------------------------------------------------------------------------- /src/Commands/EnvGetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/Commands/EnvGetCommand.php -------------------------------------------------------------------------------- /src/Commands/EnvListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/Commands/EnvListCommand.php -------------------------------------------------------------------------------- /src/Commands/EnvSetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/Commands/EnvSetCommand.php -------------------------------------------------------------------------------- /src/Commands/Traits/CommandValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/Commands/Traits/CommandValidator.php -------------------------------------------------------------------------------- /src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/Env.php -------------------------------------------------------------------------------- /src/LaravelEnvFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/LaravelEnvFacade.php -------------------------------------------------------------------------------- /src/LaravelEnvServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/src/LaravelEnvServiceProvider.php -------------------------------------------------------------------------------- /tests/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/tests/.env.example -------------------------------------------------------------------------------- /tests/EnvArtisanTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/tests/EnvArtisanTest.php -------------------------------------------------------------------------------- /tests/EnvClassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msztorc/laravel-env/HEAD/tests/EnvClassTest.php --------------------------------------------------------------------------------