Parse and validate AT Protocol Lexicons with DTO generation for Laravel
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update phpunit.xml to PHPUnit 11 standards and exclude fixtures from test discovery

+9 -13
+9 -13
phpunit.xml
··· 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <phpunit bootstrap="vendor/autoload.php" 3 - backupGlobals="false" 4 - backupStaticAttributes="false" 5 3 colors="true" 6 - verbose="true" 7 - convertErrorsToExceptions="true" 8 - convertNoticesToExceptions="true" 9 - convertWarningsToExceptions="true" 10 - processIsolation="false" 11 - stopOnFailure="false"> 4 + failOnWarning="false" 5 + failOnRisky="false" 6 + cacheDirectory=".phpunit.cache"> 12 7 <testsuites> 13 8 <testsuite name="Schema Test Suite"> 14 - <directory suffix=".php">./tests/</directory> 9 + <directory suffix="Test.php">./tests/</directory> 10 + <exclude>./tests/fixtures/</exclude> 15 11 </testsuite> 16 12 </testsuites> 17 - <filter> 18 - <whitelist> 13 + <source> 14 + <include> 19 15 <directory>src/</directory> 20 - </whitelist> 21 - </filter> 16 + </include> 17 + </source> 22 18 </phpunit>