laravel-verification

Run Laravel environment checks, linting, tests, and security scans.

1|Updated Apr 7, 2026
One-click install
npx skills add https://github.com/TruCol270/salty-pickle --skill laravel-verification-trucol270
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel-verification
Source: https://github.com/TruCol270/salty-pickle/tree/main/.claude-skills/laravel-verification
Command: npx skills add https://github.com/TruCol270/salty-pickle --skill laravel-verification-trucol270

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Laravel verification loop that ensures code quality and deployment readiness by running environment checks, linting, static analysis, tests with coverage, security scans, and deployment readiness validation before PRs or deployments.

Core Features & Use Cases

  • Environment checks & phase gates: Verify PHP, Composer, Laravel, and environment variables; ensure APP_ENV and APP_DEBUG; stop on failures to prevent downstream issues.
  • Linting and Static Analysis: Run PHP_CodeSniffer, PHPStan (or Psalm), and code quality checks to catch issues early.

Quick Start

Run the Laravel verification loop locally before opening a pull request to ensure code quality 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 automate Laravel verification before merging a pull request?

You can automate Laravel verification by running sequential phase gates for environment validation, linting, static analysis, tests with coverage, security scanning, and deployment readiness checks to ensure code quality before PRs.

What static analysis and linting tools work best for Laravel CI/CD pipelines?

For Laravel CI/CD pipelines, PHP_CodeSniffer handles linting while PHPStan or Psalm performs static analysis to catch code quality issues early and enforce standards before downstream testing phases.

Can I run end-to-end Laravel deployment checks locally before opening a PR?

Yes, you can run the Laravel verification loop locally to validate environment variables, execute test coverage, perform security scans, and confirm deployment readiness before opening a pull request.

Does Laravel security scanning stop the pipeline when vulnerabilities are found?

Laravel security scanning acts as a failure gate that stops the verification process upon detecting vulnerabilities, preventing downstream deployment issues and providing actionable guidance for fixes.

How do I validate PHP, Composer, and Laravel environment variables before running tests?

Environment validation checks PHP, Composer, and Laravel configurations while ensuring APP_ENV and APP_DEBUG are set correctly, stopping execution on failures to prevent downstream issues during testing.

When should I use an automated Laravel verification loop instead of manual checks?

Use an automated Laravel verification loop during feature branch validations, dependency upgrades, refactors, and pre-deploy checks to systematically enforce code quality and deployment readiness without manual intervention.