# Laravel Quality Checks

> Unified quality gates for Laravel projects; Pint, static analysis (PHPStan/Psalm), Insights (optional), and JS linters; Sail and non-Sail pairs provided

- Skill: `noartem/laravel-quality-checks` (Agent Skill)
- Install (CLI): `npx skillmds@latest add noartem/laravel-quality-checks`
- Raw SKILL.md: https://api.skillmd.com/api/skills/noartem/laravel-quality-checks/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: noartem (https://skillmd.com/u/noartem)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/noartem/laravel-quality-checks

---


# Quality Checks (Laravel)

Run automated checks before handoff or completion. Keep output clean.

## PHP Style & Lint

```
# Check
vendor/bin/pint --test

# Fix
vendor/bin/pint
```

## Static Analysis (choose your tool)

```
# PHPStan example
vendor/bin/phpstan analyse --memory-limit=1G

# Psalm example
vendor/bin/psalm
```

## Insights (optional, if installed)

```
php artisan insights --no-interaction --format=json --flush-cache
```

## Tests

```
php artisan test --parallel
```

