backdevs/dotenv-sniffer
最新稳定版本:1.0.6
Composer 安装命令:
composer require backdevs/dotenv-sniffer
包简介
A code sniffer for environment variables not declared in .env files
README 文档
README
Laravel Dotenv Sniffer
A code sniffer for environment variables not declared in .env files
While working on large projects we've noticed that .env.example files would often get outdated.
This tool provides a fast and simple way of constantly checking your code against .env files either as a step in your CI/CD pipeline, a Git hook or whatever works best for your project.
Requirements
- PHP
^8.1 - Tokenizer extension
Usage
Docker (recommended)
Inside your app's root directory, run:
docker run -t --rm -v $(pwd):/app backdevs/desniff:latest .env.example ./config ./app
Composer dependency
composer require --dev backdevs/dotenv-sniffer
vendor/bin/desniff .env.example ./config ./app
PHAR
curl -fsSL https://github.com/backdevs/php-dotenv-sniffer/releases/latest/download/desniff.phar -o /tmp/desniff
chmod +x /tmp/desniff
/tmp/desniff .env.example ./config ./app
Options and Arguments
Options
--no-fail- Don't fail if errors are found (exit code = 0)-w | --warn-with-default- Treat variables with default values in Laravel'senv()calls as warnings-c | --fail-code- The exit code to use when failing (default: 1), useful in CI/CD pipelines
Arguments
env-file- The .env file to check against (e.g.:.env,.env.example,.env.dev)paths- One or more files and/or directories to check
Simple Example
The .env.example file:
APP_NAME=DotenvSniffer DB_HOST=localhost
The config.php file:
<?php use Illuminate\Support\Env; return [ 'app' => [ 'name' => env('APP_NAME'), 'key' => Env::get('APP_KEY', sprintf('base64:%s', base64_encode('example'))), ], 'mysql' => [ 'host' => env('DB_HOST', 'localhost'), 'username' => getenv('DB_USERNAME'), 'password' => \Illuminate\Support\Env::get('DB_PASSWORD', 'secret'), 'database' => $_ENV['DB_DATABASE'], ], ];
Output for vendor/bin/desniff -w .env.example config.php
统计信息
- 总下载量: 39
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-06
