laravel-verification

Run environment checks, linting, tests, security audits, and migration verification for Laravel projects.

16|3|Updated Mar 12, 2026
One-click install
npx skills add https://github.com/sehoon787/my-claude --skill laravel-verification-sehoon787
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel-verification
Source: https://github.com/sehoon787/my-claude/tree/main/skills/ecc/laravel-verification
Command: npx skills add https://github.com/sehoon787/my-claude --skill laravel-verification-sehoon787

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Laravel verification loop eliminates the risk of deploying with unresolved environment issues, code quality gaps, or misconfigurations by providing a structured, automated verification pipeline before PRs and deployments.

Core Features & Use Cases

  • Environment checks: verifies PHP, Composer, and Laravel versions and validates required environment variables.
  • Linting and static analysis: runs linting and static analyzers to enforce code quality and catch early issues.
  • Tests with coverage: executes Laravel tests and reports coverage metrics to guide quality gates.
  • Security audits and migrations: runs dependency/security checks and validates database migrations and deployment readiness.
  • Use Case: Ensure a Laravel app is PR-ready and production-ready by verifying all phases in a single workflow before merge.

Quick Start

Run the Laravel verification loop on your project to validate environment, linting, tests, security, and deployment readiness.

Frequently Asked Questions about laravel-verification

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run pre-deployment checks for a Laravel application?

Pre-deployment checks for a Laravel application involve validating environment configurations, running linting and static analysis, executing tests with coverage, and performing security audits to ensure deployment readiness.

What is included in Laravel project verification before a pull request?

Laravel project verification before a PR includes checking PHP, Composer, and Laravel versions, validating environment variables, running Pint and PHPStan, and verifying database migration statuses.

How do I automate code quality and security scans for Laravel?

Automate code quality and security scans for Laravel by running composer audit for dependency vulnerabilities, using Pint for linting, and applying PHPStan for static analysis within a structured verification pipeline.

Does Laravel verification support static analysis with PHPStan and Pint?

Yes, Laravel verification supports static analysis with PHPStan and linting with Pint to enforce code quality standards and catch potential issues early before merging or deploying.

Can I verify database migration status as part of Laravel deployment readiness?

Yes, you can verify database migration status as part of Laravel deployment readiness by running migration status checks to ensure all database schemas are properly synchronized before deployment.

What is the best way to automate Laravel testing and coverage reports before deployment?

The best way to automate Laravel testing and coverage reports before deployment is executing the Laravel test suite within an automated verification loop that reports coverage metrics to guide quality gates.