chore: track tests/Integration directory with placeholder

The phpunit.xml split into unit + integration testsuites requires the
integration directory to exist on disk, even when empty. The .gitkeep
keeps the directory present in fresh checkouts and on CI; the first real
integration test in a later task will replace the placeholder.
This commit is contained in:
Keith Solomon
2026-07-06 17:24:41 -05:00
parent eed678e688
commit a05baeb4f6
+6
View File
@@ -0,0 +1,6 @@
<?php
declare(strict_types=1);
// Placeholder so PHPUnit's integration test suite has a directory to scan.
// The first real integration tests land in a later task.