npx skills add ...
npx skills add affaan-m/ecc --skill laravel-verification
Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness. Use when verifying a Laravel project before merge or deploy — lint, static analysis, tests, coverage, security.
npx skills add affaan-m/ecc --skill laravel-verification
Run before PRs, after major changes, and pre-deploy.
.env is present and required keys existAPP_DEBUG=false for production environmentsAPP_ENV matches the target deployment (production, staging)If using Laravel Sail locally:
If your project uses Psalm instead of PHPStan:
Coverage (CI):
CI example (format -> static analysis -> tests):
Y_m_d_His_* (e.g., 2025_03_14_154210_create_orders_table.php) and describe the change clearlydown() methods and avoid irreversible data loss without explicit backupsstorage/ and bootstrap/cache/ are writable in the target environmentIf Horizon is used:
If queue:monitor is available, use it to check backlog without processing jobs:
Active verification (staging only): dispatch a no-op job to a dedicated queue and run a single worker to process it (ensure a non-sync queue connection is configured).
Verify the job produced the expected side effect (log entry, healthcheck table row, or metric).
Only run this on non-production environments where processing a test job is safe.
Minimal flow:
CI-style pipeline:
composer validate
composer dump-autoload -ovendor/bin/pint --test
vendor/bin/phpstan analysevendor/bin/psalmphp artisan testXDEBUG_MODE=coverage php artisan test --coveragevendor/bin/pint --test
vendor/bin/phpstan analyse
XDEBUG_MODE=coverage php artisan test --coveragecomposer auditphp artisan migrate --pretend
php artisan migrate:statusphp artisan optimize:clear
php artisan config:cache
php artisan route:cache
php artisan view:cachephp artisan schedule:list
php artisan queue:failedphp artisan horizon:statusphp artisan queue:monitor default --max=100php artisan tinker --execute="dispatch((new App\\Jobs\\QueueHealthcheck())->onQueue('healthcheck'))"
php artisan queue:work --once --queue=healthcheckphp -v
composer --version
php artisan --version
composer validate
vendor/bin/pint --test
vendor/bin/phpstan analyse
php artisan test
composer audit
php artisan migrate --pretend
php artisan config:cache
php artisan queue:failedcomposer validate
composer dump-autoload -o
vendor/bin/pint --test
vendor/bin/phpstan analyse
XDEBUG_MODE=coverage php artisan test --coverage
composer audit
php artisan migrate --pretend
php artisan optimize:clear
php artisan config:cache
php artisan route:cache
php artisan view:cache
php artisan schedule:list