laravel-verification

Automate Laravel project verification with environment, lint, test, and security checks.

Updated Jun 22, 2026
One-click install
npx skills add https://github.com/hector-manny/bussbot --skill laravel-verification-hector-manny
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel-verification
Source: https://github.com/hector-manny/bussbot/tree/main/.cursor/skills/laravel-verification
Command: npx skills add https://github.com/hector-manny/bussbot --skill laravel-verification-hector-manny

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the verification process for Laravel projects, ensuring that all necessary checks are performed before deployment, saving time and reducing the risk of errors.

Core Features & Use Cases

  • Environment Checks: Validates PHP, Composer, and Laravel versions.
  • Linting and Static Analysis: Ensures code quality with tools like Pint and PHPStan.
  • Tests and Coverage: Runs tests and generates coverage reports.
  • Security Scans: Identifies potential security vulnerabilities.
  • Deployment Readiness: Checks for issues that could prevent successful deployment.
  • Use Case: Before deploying a Laravel project, use this Skill to run a comprehensive verification process to ensure everything is in order.

Quick Start

Run the verification loop for your Laravel project with the command: ./scripts/laravel-verification.sh

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 project verification for continuous integration pipelines?

Automating Laravel project verification for continuous integration involves running environment checks, linting, static analysis, tests, and security scans to ensure deployment readiness. This Skill executes that comprehensive verification loop automatically via a single shell script.

What checks are needed for Laravel deployment readiness before releasing to production?

Laravel deployment readiness checks should validate PHP and Composer versions, run Pint and PHPStan for code quality, execute tests with coverage, and scan for security vulnerabilities. This Skill automates these specific pre-deployment validations to prevent production errors.

How do I run static analysis and linting for a Laravel codebase in CI?

Running static analysis and linting for a Laravel codebase in CI requires tools like Pint for formatting and PHPStan for analysis. This Skill integrates these tools into its automated verification process to enforce code quality standards before deployment.

Can I use this verification script to check Laravel environment dependencies?

Yes, you can use this verification script to check Laravel environment dependencies. It validates the required PHP, Composer, and Laravel versions to ensure your local or continuous integration environment meets the project's prerequisites.

What is the best way to integrate security scans into Laravel continuous integration?

The best way to integrate security scans into Laravel continuous integration is to automate vulnerability identification during the pre-deployment phase. This Skill includes dedicated security scanning within its verification loop to detect potential issues before release.