testing-php
Installation
SKILL.md
When to use me
Use this skill when validating PHP files for syntax errors. Do not use this skill for JavaScript or CSS validation.
Step 1: Identify PHP files
Find all PHP files in the project, excluding vendor/, node_modules/, and build/ directories:
find . -name "*.php" -not -path "*/vendor/*" -not -path "*/node_modules/*" -not -path "*/build/*"
Step 2: Run PHP syntax check
Check each PHP file for syntax errors using php -l: