What problem does it solve? Laravel teams often ship changes without a consistent pre-release checklist, leading to broken deployments, missed security vulnerabilities, and failed migrations. This Skill provides a structured, sequential verification loop that gates pull requests and deployments behind environment, code quality, test, security, and infrastructure 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 where each phase gates the next. - Deployment Readiness Gates: Validates migrations with migrate --pretend, warms config/route/view caches, and confirms queue workers, schedulers, and Horizon status before release. - Use Case: Before merging a pull request after a major dependency upgrade, 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 my project before I open a pull request and report any failures by phase.