coding-standards
Installation
SKILL.md
Contains Hooks
This skill uses Claude hooks which can execute code automatically in response to events. Review carefully before installing.
PHP Coding Standards
Language-level coding standards for PHP, applicable to any PHP project regardless of framework.
PSR-12 Compliance
File Structure
<?php
declare(strict_types=1); // Required at file top
namespace App\Controller\User; // PSR-4 autoloading
use Cake\Controller\Controller; // Alphabetical imports
use Cake\Http\Response;