laravel-verification

Automate Laravel environment, linting, test, security, and migration verification.

86|21|Updated Feb 9, 2026
One-click install
npx skills add https://github.com/Jamkris/everything-gemini-code --skill laravel-verification-jamkris
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel-verification
Source: https://github.com/Jamkris/everything-gemini-code/tree/main/skills/laravel-verification
Command: npx skills add https://github.com/Jamkris/everything-gemini-code --skill laravel-verification-jamkris

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Verification loop for Laravel projects ensures environment readiness, code quality, and deployment readiness by running environment checks, linting, static analysis, tests with coverage, security scans, and migrations validation before PRs and deployments.

Core Features & Use Cases

  • Environment checks (PHP, Composer, Laravel, .env presence, APP_DEBUG, APP_ENV)
  • Linting and static analysis (Pint, PHPStan/Psalm)
  • Tests and coverage (php artisan test; CI coverage)
  • Security and dependency checks (composer audit)
  • Migration and database readiness (migrate --pretend, migrate:status)
  • Build and deployment readiness (cache/config/routes/view, queue/scheduler checks)

Quick Start

Run the Laravel verification workflow on your project to validate environment, lint, tests, security, migrations, 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 verify Laravel deployment readiness before merging a PR?

Laravel deployment readiness is verified by running a deterministic pipeline that checks environment configuration, linting with Pint and PHPStan, tests with coverage, security audits, and migration status before merging PRs.

What should a Laravel pre-deploy checklist include for environment and security?

A Laravel pre-deploy checklist should include validating the PHP and Composer versions, checking .env presence and APP_DEBUG settings, running composer audit for security, and confirming database migrations are ready.

How do I automate Laravel testing and static analysis checks for CI?

Automate Laravel testing and static analysis by running Pint for linting, PHPStan for static analysis, and php artisan test with coverage to enforce code quality and verify deployment readiness in CI pipelines.

Can I check Laravel migration status without executing pending migrations?

Yes, you can check Laravel migration status without executing migrations by running migrate:status to see pending items and migrate --pretend to preview the SQL statements that will be executed during deployment.

Does Laravel verification support build readiness checks for cache and queue configuration?

Laravel verification supports build readiness by validating cache, config, routes, and view caching, along with checking queue and scheduler configurations to ensure production-ready Laravel builds.