php

Installation
SKILL.md

PHP Development

Modern PHP 8.x development patterns and best practices.

PHP 8.x Features

Constructor Property Promotion

// Before PHP 8
class User {
    private string $name;
    private int $age;

    public function __construct(string $name, int $age) {
        $this->name = $name;
        $this->age = $age;
    }
}
Related skills

More from vapvarun/claude-backup

Installs
45
First Seen
Jan 20, 2026