承接 aranyasen/laravel-env-sync 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

aranyasen/laravel-env-sync

最新稳定版本:v2.0.2

Composer 安装命令:

composer require aranyasen/laravel-env-sync

包简介

A package that makes sure that your .env file is in sync with your .env.example

README 文档

README

Tests Scrutinizer Scrutinizer coverage

Laravel Env Sync

Keep your .env in sync with your .env.example or vice versa.

It reads the .env.example file and makes suggestions to fill your .env accordingly.

Installation via Composer

Start by requiring the package with composer

composer require aranyasen/laravel-env-sync

Usage

Sync your dotenv files

You can populate your .env file from the .env.example by using the php artisan env:sync command.

The command will tell you if there's anything not in sync between your files and will propose values to add into the .env file.

You can launch the command with the option --reverse to fill the .env.example file from the .env file

You can also use --src and --dest to specify which file you want to use. You must use either both flags, or none.

If you use the --no-interaction flag, the command will copy all new keys with their default values.

Check for diff in your dotenv files

You can check if your .env is missing some variables from your .env.example by using the php artisan env:check command.

The command simply show you which keys are not present in your .env file. This command will return 0 if your files are in sync, and 1 if they are not, so you can use this in a script

Again, you can launch the command with the option --reverse or with --src and --dest.

The command will also dispatch event Aranyasen\LaravelEnvSync\Events\MissingEnvVars, which will contain the missing env variables, which could be used in automatic deployments. Event is only fired when there are missing env variables.

Show diff between your dotenv files

You can show a table that compares the content of your env files by using the php artisan env:diff command.

The command will print a table that compares the content of both .env and .env.example files, and will highlight the missing keys.

You can launch the command with the options --src and --dest.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-10-14