php

Installation
SKILL.md

PHP 8.3+ Modern Practices

Progressive guidance for modern PHP development with types, patterns, and best practices.

Quick Start

<?php

declare(strict_types=1);

final readonly class CreateUser
{
    public function __construct(
        private string $name,
        private Email $email,
    ) {}
Installs
1
First Seen
9 days ago
php — stifleur390/fullstack-dev-skills