What problem does it solve? Laravel teams often ship changes without a consistent pre-release checklist, leading to broken deployments, failed migrations, or security vulnerabilities slipping into production. This Skill provides a structured, sequential verification loop that gates every release behind environment, code quality, test, security, and deployment checks. ## Core Features & Use Cases - Phased Verification Pipeline: Runs environment checks, Composer validation, Pint linting, PHPStan/Psalm static analysis, tests with coverage, and Composer security audits in a strict order. - Database and Migration Safety: Previews migrations with migrate --pretend, checks migration status, and enforces rollback safety before release. - Deployment Readiness: Validates config/route/view caching, queue workers, scheduler configuration, and Horizon status before go-live. - Use Case: Before opening a pull request on a Laravel application, run the full loop to confirm Pint passes, PHPStan is clean, tests pass with coverage, composer audit reports no vulnerabilities, and cache warmups succeed in production configuration. ## Quick Start Run the Laravel verification loop on this project and report any failures in linting, tests, security audits, or deployment readiness.