laravel-dotenv-editor icon indicating copy to clipboard operation
laravel-dotenv-editor copied to clipboard

A Laravel package for editing the .env file dynamically.

Results 25 laravel-dotenv-editor issues
Sort by recently updated
recently updated
newest added

Remove duplicate import of Illuminate\Support\Str Fixes #73

https://github.com/Brotzka/laravel-dotenv-editor/blob/f84fbabef07c34a92af0f32e38a84e9ced087e64/src/DotenvEditor.php#L33

I follow the little guide on the README file and tried to get the value by the method provided with the library ``` $env = new DotenvEditor(); $env->changeEnv(['VARIABLE'=>'new_value']); return $env->getValue('VARIABLE');...

Hi, is there a way to publish the views or to assign another layout to the existing views? I would love to integrate this seamless into my existing Admin LTE...

As of Laravel 5.7.17, the following error occurs due to a failed syntax on the vendor/routes file for this package: In Router.php line 366: ``` Argument 1 passed to Illuminate\Routing\Router::group()...

Comments inside the .env file are being completely ignored and removed This: ``` # my comment APP_SOMETHING=FOO ``` Into this: ``` APP_SOMETHING=FOO ``` Also spaces are not preserved as in...

If `.env` file has empty lines between key-value pairs: ``` APP_ENV=local APP_KEY= APP_DEBUG=true APP_LOG_LEVEL=debug ``` After edit it will look like: ``` APP_ENV=local APP_KEY= APP_DEBUG=true APP_LOG_LEVEL=debug ``` It will be...

enhancement

Hello, @Brotzka I have use your package and is very useful. You have done a great work Unfortunately with the new Vue version , all the templates are failing to...

On last version was removed the comparison needed to work the method keyExists, and now always return false unless the given key is the first key in the env file.