What problem does it solve? Writing modern PHP applications requires keeping up with PHP 8.3 language features, Laravel 11 and Symfony 7 framework conventions, ORM patterns, and testing practices, which is difficult to do consistently without a structured reference. ## Core Features & Use Cases - Modern PHP 8.3 Patterns: Covers readonly classes, enums, attributes, typed properties, match expressions, and nullsafe operators. - Framework Implementation Guides: Provides Laravel 11 patterns (Controllers, Form Requests, API Resources, Eloquent, queues, events) and Symfony 7 patterns (attribute routing, Doctrine ORM, dependency injection). - Testing and Quality Tooling: Includes PHPUnit and Pest test patterns, PHPStan static analysis, Laravel Pint code style, and Docker/CI-CD configuration. - Use Case: When building a REST API in Laravel, use this Skill to scaffold a controller with validated Form Requests, API Resources, Eloquent relationships, and feature tests following current conventions. ## Quick Start Ask the assistant to create a Laravel 11 API endpoint with a Form Request, Eloquent model, API Resource, and a PHPUnit feature test.