crhg/laravel-env-check 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

crhg/laravel-env-check

Composer 安装命令:

composer require crhg/laravel-env-check

包简介

README 文档

README

Enhance checking of configuration cache and environment.

DESCRIPTION

Prohibit designation of an explicit environment when configuration is cached

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.

Since this is potentially dangerous, when configuration is cached, it is prohibited to specify the environment with --env option or APP_ENV environment variable.

Prohibit designation of environment for config:cache command

When 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.

Check consistency with .env file

Saves 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.

Commands to be excluded from check

Some artisan commands do not depend on the environment, so exclude them from checking.

If you want to add some commands to exclude, use the excluded_command setting in config/env_check.php.

INSTALL

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;

        $app->singleton(\Crhg\EnvCheck\EnvChecker::class);

        $app->beforeBootstrapping(
            \Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables::class,
            function ($app) {
                $checker = $app->make(\Crhg\EnvCheck\EnvChecker::class);
                $checker->examineEnvironmentVariables();
            }
        );

EXAMPLE

  • If local environment is cached:
% php artisan migrate:status --env=foo
Don't use --env option when configuration is cached
  • If .env is modified after config:cache:
% php artisan migrate:status
.env hash unmatch

统计信息

  • 总下载量: 49
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-03-29

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固