Skip to content

Commit

Permalink
Fix phpunit config schema for current version
Browse files Browse the repository at this point in the history
  • Loading branch information
SenseException committed Feb 21, 2025
1 parent 4f66db3 commit ff3ce8f
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./vendor/autoload.php"
backupGlobals="false" verbose="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true">
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>src/Resources</directory>
</exclude>
</coverage>
<testsuite name="classes">
<directory suffix="Test.php">tests</directory>
</testsuite>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./vendor/autoload.php"
executionOrder="random"
cacheDirectory=".phpunit.cache">
<testsuite name="classes">
<directory>tests</directory>
</testsuite>

<coverage/>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>src/Resources</directory>
</exclude>
</source>
</phpunit>

0 comments on commit ff3ce8f

Please sign in to comment.