From bce564d68bed1869333c4c316a405fa908103baa Mon Sep 17 00:00:00 2001 From: Haylan Date: Sat, 11 Jul 2026 16:46:47 +0200 Subject: [PATCH] docs(readme): fix phpunit command paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is no bin/phpunit (only bin/console) — the binary lives at vendor/bin/phpunit, matching CLAUDE.md's documented commands. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index abc108d..af3053f 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ docker compose up -d --build docker compose exec graph sh # Run tests inside the container -docker compose exec graph php bin/phpunit +docker compose exec graph vendor/bin/phpunit # Disable Xdebug for faster test runs XDEBUG_MODE=off docker compose up -d @@ -195,16 +195,16 @@ docker compose -f docker-compose.yml up -d --build ```bash # Run full suite -php bin/phpunit +vendor/bin/phpunit # Human-readable output -php bin/phpunit --testdox +vendor/bin/phpunit --testdox # Single file -php bin/phpunit tests/Unit/Service/SvgRendererTest.php +vendor/bin/phpunit tests/Unit/Service/SvgRendererTest.php # Filter by name -php bin/phpunit --filter it_renders +vendor/bin/phpunit --filter it_renders ``` ---