php-testing
Installation
SKILL.md
PHP Testing Skill
PHPUnit Basics
PHPUnit is the standard testing framework for PHP. Tests extend TestCase and use either the test method prefix or the @test annotation.
<?php
declare(strict_types=1);
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class InvoiceTest extends TestCase
{
// Option 1: test prefix (preferred — no annotation needed)
public function testCalculatesTotalWithTax(): void
Related skills
More from notque/claude-code-toolkit
generate-claudemd
Generate project-specific CLAUDE.md from repo analysis.
12fish-shell-config
Fish shell configuration and PATH management.
12pptx-generator
PPTX presentation generation with visual QA: slides, pitch decks.
12codebase-overview
Systematic codebase exploration and architecture mapping.
10image-to-video
FFmpeg-based video creation from image and audio.
9data-analysis
Decision-first data analysis with statistical rigor gates.
9