dev-#5_improve_error_output
dev-#5_improve_error_output
MIT
The Requires
- php >=7.0
- laravel/framework ^5.5
by Manabu Matsui
dev-check_env_hash
dev-check_env_hash
MIT
The Requires
- php >=7.0
- illuminate/support ^5.5
by Manabu Matsui
Wallogit.com
2017 © Pedro Peláez
Enhance checking of configuration cache and environment., (*1)
Laravel's environment can be sepcified with the --env option of artisan command or APP_ENV environment variable, but specified environment is ignored when the configuration is cached., (*2)
Since this is potentially dangerous, when configuration is cached, it is prohibited to specify the environment with --env option orAPP_ENV environment variable., (*3)
config:cache commandWhen generating the configuration cache with the config: cache command, prohibit specification of the environment with the--env option or the APP_ENV environment variable.
Therefore, only the default environment described in the .env file can be cached., (*4)
.env fileSaves the checksum of the .env file when the config cache is generated.
It is checked whether it matches that of the current .env file.
If they do not match, an error will occur., (*5)
Some artisan commands do not depend on the environment, so exclude them from checking., (*6)
If you want to add some commands to exclude, use the excluded_command setting in config/env_check.php., (*7)
composer require crhg/laravel-env-check php artisan vendor:publish --provider='Crhg\EnvCheck\Providers\EnvCheckServiceProvider'
Add the following code before return $app in bootstrap/app.php;, (*8)
$app->singleton(\Crhg\EnvCheck\EnvChecker::class);
$app->beforeBootstrapping(
\Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables::class,
function ($app) {
$checker = $app->make(\Crhg\EnvCheck\EnvChecker::class);
$checker->examineEnvironmentVariables();
}
);
local environment is cached:% php artisan migrate:status --env=foo Don't use --env option when configuration is cached
.env is modified after config:cache:% php artisan migrate:status .env hash unmatch
MIT
MIT