furkankufrevi/laravel-deploy-checklist
Composer 安装命令:
composer require furkankufrevi/laravel-deploy-checklist
包简介
An artisan command that verifies your Laravel app is production-ready. Checks debug mode, caches, migrations, environment, security headers, and more.
README 文档
README
An artisan command that verifies your Laravel app is production-ready. Checks 14 common misconfiguration issues before you deploy.
Installation
composer require furkankufrevi/laravel-deploy-checklist --dev
The service provider is auto-discovered. To publish the config:
php artisan vendor:publish --tag=deploy-checklist-config
Usage
php artisan deploy:check
Strict mode (warnings = failures):
php artisan deploy:check --strict
Example Output
Deploy Checklist
Checking production readiness...
PASS Debug Mode: Debug mode is disabled.
PASS Environment: APP_ENV is 'production'.
PASS App Key: APP_KEY is set.
WARN Config Cache: Config is not cached. Run php artisan config:cache.
WARN Route Cache: Routes are not cached. Run php artisan route:cache.
PASS View Cache: Views are compiled.
PASS Event Cache: Events are cached.
PASS Migrations: All migrations have been run.
PASS App URL: APP_URL is set to 'https://myapp.com'.
PASS Log Channel: Log channel is 'daily'.
FAIL Mail Config: Mail driver is 'log'. Set a real mailer for production.
WARN Queue Driver: Queue driver is 'sync'. Jobs will block HTTP requests.
PASS Session Driver: Session driver is 'redis'.
PASS HTTPS: HTTPS is configured with secure cookies.
11 passed 3 warnings 1 failed
Not ready for deployment.
Checks
| Check | Level | What it verifies |
|---|---|---|
| Debug Mode | Fail | APP_DEBUG must be false |
| Environment | Fail/Warn | APP_ENV should be production |
| App Key | Fail | APP_KEY must be set |
| Config Cache | Warn | php artisan config:cache has been run |
| Route Cache | Warn | php artisan route:cache has been run |
| View Cache | Warn | php artisan view:cache has been run |
| Event Cache | Warn | php artisan event:cache has been run |
| Migrations | Fail | No pending migrations |
| App URL | Fail/Warn | APP_URL is set and uses HTTPS |
| Log Channel | Warn | Log rotation is configured |
| Mail Config | Fail | Mail driver isn't log or array |
| Queue Driver | Warn | Queue driver isn't sync |
| Session Driver | Fail/Warn | Session driver isn't array |
| HTTPS | Warn | HTTPS URL and secure cookies |
CI Integration
Add to your deployment pipeline:
- run: php artisan deploy:check --strict
Exits with code 1 on failures (or warnings in strict mode).
Configuration
Disable individual checks or enable strict mode globally:
// config/deploy-checklist.php return [ 'checks' => [ 'debug_mode' => true, 'environment' => true, 'app_key' => true, 'config_cache' => true, 'route_cache' => true, 'view_cache' => true, 'event_cache' => true, 'pending_migrations' => true, 'app_url' => true, 'log_channel' => true, 'mail_config' => true, 'queue_driver' => true, 'session_driver' => true, 'https_only' => true, ], 'strict' => false, ];
License
MIT
furkankufrevi/laravel-deploy-checklist 适用场景与选型建议
furkankufrevi/laravel-deploy-checklist 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「deployment」 「production」 「devops」 「preflight」 「checklist」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 furkankufrevi/laravel-deploy-checklist 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 furkankufrevi/laravel-deploy-checklist 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 furkankufrevi/laravel-deploy-checklist 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Automated deployment template for Laravel Envoy based on Capistrano.
Morpht Development Tools
blueways deployer recipes
Load .env file into project environment, using same functions as Laravel
A Highly Opinionated Symfony3/4 Deployer Recipe
A Deployment/Change Log Schedule and Notes system for SilverStripe sites
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 42
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-16