What problem does it solve? Laravel developers often ship code without a consistent pre-release checklist, leading to broken deployments, failed migrations, or security vulnerabilities discovered too late. 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 pretend mode, cache warmups (config, route, view), queue workers, and scheduler configuration before release. - Use Case: Before opening a pull request after a major refactor, run the full loop to confirm Pint formatting is clean, PHPStan reports no errors, tests pass with coverage, no vulnerable Composer dependencies exist, and migrations are reversible. ## Quick Start Run the Laravel verification loop on my project and report any failures across linting, tests, security, and deployment readiness.