.kiro/steering/php-patterns.md
This file extends the common patterns with PHP specific content.
declare(strict_types=1); in application codereadonly properties or immutable constructors for request/response payloadsFormRequest, Symfony Validator)password_hash() / password_verify() for password storagecomposer audit in CI# PHP-CS-Fixer or Laravel Pint for formatting
# PHPStan or Psalm for static analysis
vendor/bin/phpstan analyse
vendor/bin/phpunit --coverage-text
See skills: laravel-patterns, laravel-security, laravel-tdd for Laravel-specific guidance.
See skill: api-design for endpoint conventions and response-shape guidance.