php-modern-practices
Installation
SKILL.md
Modern PHP Best Practices
Master modern PHP 8+ features and best practices for building performant, type-safe applications.
When to Use This Skill
- Building PHP 8+ applications
- Modernizing legacy PHP codebases
- Implementing type-safe PHP code
- Optimizing PHP performance
- Building Laravel, Symfony, or framework-free applications
Key Features (PHP 8+)
Named Arguments
function createUser(string $name, string $email, int $age) {
// ...
}