PHPackages                             furkankufrevi/laravel-deploy-checklist - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. furkankufrevi/laravel-deploy-checklist

ActiveLibrary

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.

00PHPCI passing

Since Mar 16Pushed 1mo agoCompare

[ Source](https://github.com/furkankufrevi/laravel-deploy-checklist)[ Packagist](https://packagist.org/packages/furkankufrevi/laravel-deploy-checklist)[ RSS](/packages/furkankufrevi-laravel-deploy-checklist/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Deploy Checklist
========================

[](#laravel-deploy-checklist)

An artisan command that verifies your Laravel app is production-ready. Checks 14 common misconfiguration issues before you deploy.

Installation
------------

[](#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
-----

[](#usage)

```
php artisan deploy:check
```

Strict mode (warnings = failures):

```
php artisan deploy:check --strict
```

Example Output
--------------

[](#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
------

[](#checks)

CheckLevelWhat it verifiesDebug ModeFail`APP_DEBUG` must be `false`EnvironmentFail/Warn`APP_ENV` should be `production`App KeyFail`APP_KEY` must be setConfig CacheWarn`php artisan config:cache` has been runRoute CacheWarn`php artisan route:cache` has been runView CacheWarn`php artisan view:cache` has been runEvent CacheWarn`php artisan event:cache` has been runMigrationsFailNo pending migrationsApp URLFail/Warn`APP_URL` is set and uses HTTPSLog ChannelWarnLog rotation is configuredMail ConfigFailMail driver isn't `log` or `array`Queue DriverWarnQueue driver isn't `sync`Session DriverFail/WarnSession driver isn't `array`HTTPSWarnHTTPS URL and secure cookiesCI Integration
--------------

[](#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
-------------

[](#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
-------

[](#license)

MIT

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance59

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/b66a7a56cce090d1bdc1e83e0f8e2e2ed1f05129e6f735ffcc69afb39cff60a3?d=identicon)[furkankufrevi](/maintainers/furkankufrevi)

---

Top Contributors

[![furkankufrevi](https://avatars.githubusercontent.com/u/46204100?v=4)](https://github.com/furkankufrevi "furkankufrevi (1 commits)")

### Embed Badge

![Health badge](/badges/furkankufrevi-laravel-deploy-checklist/health.svg)

```
[![Health](https://phpackages.com/badges/furkankufrevi-laravel-deploy-checklist/health.svg)](https://phpackages.com/packages/furkankufrevi-laravel-deploy-checklist)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
