chore: gitignore 忽略 phpunit 测试缓存目录

tests/.phpunit.cache/ 是 phpunit 运行产生的测试结果缓存(phpunit.xml.dist cacheDirectory 指向),不应纳入版本控制。
This commit is contained in:
augushong
2026-07-18 23:57:55 +08:00
parent 37cb8291f8
commit 073172473b
2 changed files with 4 additions and 2 deletions

5
.gitignore vendored
View File

@@ -50,4 +50,7 @@ extend/base/common/command/curd/migrate_output.php
/docker-dev/
/.sisyphus
/.omo
/.playwright-mcp
/.playwright-mcp
# PHPUnit 测试结果缓存
tests/.phpunit.cache/