What problem does it solve?
Ensures Laravel projects are production-ready by systematically verifying environment configuration, dependency integrity, code quality, test coverage, security posture, database migrations, and deployment readiness to prevent regressions and release failures.
Core Features & Use Cases
- Environment & Dependency Validation: Checks PHP, Composer, and artisan versions and required environment keys to gate pipelines early.
- Quality & Testing Pipeline: Runs linters and static analysis (Pint, PHPStan/ Psalm), executes tests with coverage, and enforces passing results before merging.
- Security, Migrations & Deploy Readiness: Performs composer audit, previews migrations, verifies cache warmups, and confirms queue/scheduler health for safe releases.
- Use Case: Use this loop in CI to block pull requests that fail static analysis, tests, security audits, or migration sanity checks before deploying to staging or production.
Quick Start
Run the Laravel verification loop to validate environment, linting, tests, security, migrations, and deployment readiness before opening a pull request.