testing-patterns-php

Installation
SKILL.md

Testing Couchbase PHP Applications

Unit Testing

PHPUnit's built-in mock builder works well for wrapping the collection behind an interface.

composer require --dev phpunit/phpunit
interface UserStoreInterface {
    public function getUser(string $id): array;
}
Installs
2
First Seen
Jun 18, 2026
testing-patterns-php — couchbaselabs/agent-skills