I would appreciate you taking the time to look at my Patreon and considering to support me if I'm saving you some time with my work.
Based on the article How to keep a secret.
Require this package, with Composer, in the root directory of your project.
$ composer require faustbrian/laravel-environment
Add the service provider to config/app.php
in the providers
array.
BrianFaust\Environment\EnvironmentServiceProvider::class
Laravel Env supports optional configuration.
To get started, you'll need to publish all vendor assets:
$ php artisan vendor:publish --provider="BrianFaust\Environment\EnvironmentServiceProvider"
This will create a config/env.php
file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.
To get started, you'll need to generate a new encryption key for the env.php
config file.
$ php artisan env:key
// 5W183ikLhZqoJ1Ye
Copy this key and place it within the env.php
config file.
Add the following code at the very top of bootstrap/app.php
, above any other code:
require_once(__DIR__.'/../vendor/faustbrian/laravel-environment/src/functions.php');
Please see CHANGELOG for more information what has changed recently.
$ phpunit
Please see CONTRIBUTING for details.
If you discover a security vulnerability within this package, please send an e-mail to Brian Faust at hello@brianfaust.de. All security vulnerabilities will be promptly addressed.