> php-tooling
Configure PHP ecosystem tooling, dependency management, and static analysis. Use when managing Composer dependencies, running PHPStan, or configuring PHP build tools. (triggers: composer.json, composer, lock, phpstan, xdebug)
curl "https://skillshub.wtf/HoangNguyen0403/agent-skills-standard/php-tooling?format=md"PHP Tooling
Priority: P2 (MEDIUM)
Structure
project/
├── composer.json
├── phpstan.neon
└── .php-cs-fixer.php
Implementation Guidelines
- Composer: Always commit
composer.lockfor applications. Usecomposer auditandcomposer install in CI(notupdate) for locked versions. - Autoloading: Strictly enforce PSR-4 autoloading in
composer.json(e.g.,"psr-4": {"App\\": "src/"}— ensure backslashes are escaped). Runcomposer dump-autoloadafter changes. - Static Analysis: Mandate PHPStan (Level 5+) or Psalm in CI. Install via
composer require --dev phpstan/phpstan. Createphpstan.neonwithparameters: { paths: [src], level: 6 }. Run viavendor/bin/phpstan analyse. - Linting: Automate PSR-12 standards via
composer require --dev friendsofphp/php-cs-fixer. Configure in.php-cs-fixer.phpwith$config->setRules(['@PSR12' => true]). Usephp-cs-fixerto enforce standards. - Execution: Use
PHP 8.1+to leverage performance improvements (JIT, OpCache). - Scripts: Define standard task
"scripts": {incomposer.json("analyze": "phpstan analyse", "test": "phpunit", "check": ["@fix", "@analyze", "@test"]}). Run withcomposer check. - Debugging: Use
Xdebugfor local development only. Remove xdebug.so from prod config or set XDEBUG_MODE=off in production. - Docker: Use Multi-stage Dockerfiles with
php:8.x-fpmorphp:8.x-clibase images.
Anti-Patterns
- No manual
require: Use Composer PSR-4 autoloading only. - No blind composer updates: Review
composer.lockdiff first. - No Xdebug in production: Disable the extension in prod env.
- No
vendor/in git: Exclude via.gitignore; use Composer.
References
> related_skills --same-repo
> common-store-changelog
Generate user-facing release notes for the Apple App Store and Google Play Store by collecting git history, triaging user-impacting changes, and drafting store-compliant changelogs. Enforces character limits (App Store ≤4000, Google Play ≤500), tone, and bullet format. Use when generating release notes, app store changelog, play store release, what's new, or version release notes for any mobile app. (triggers: generate changelog, app store notes, play store release, what's new, release notes, ve
> golang-tooling
Go developer toolchain — gopls LSP diagnostics, linting, formatting, and vet. Use when setting up Go tooling, running linters, or integrating gopls with Claude Code. (triggers: gopls, golangci-lint, golangci.yml, go vet, goimports, staticcheck, go tooling, go lint)
> common-ui-design
Design distinctive, production-grade frontend UI with bold aesthetic choices. Use when building web components, pages, interfaces, dashboards, or applications in any framework (React, Next.js, Angular, Vue, HTML/CSS). (triggers: build a page, create a component, design a dashboard, landing page, UI for, build a layout, make it look good, improve the design, build UI, create interface, design screen)
> common-owasp
OWASP Top 10 audit checklist for Web Applications (2021) and APIs (2023). Load during any security review, PR review, or codebase audit touching web, mobile backend, or API code. (triggers: security review, OWASP, broken access control, IDOR, BOLA, injection, broken auth, API review, authorization, access control)