Skip to content

Commit

Permalink
migrate PHPUnit config to 10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Oct 12, 2023
1 parent 68c23b3 commit d820b94
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupGlobals="false"
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
Expand All @@ -15,12 +15,13 @@
processIsolation="false"
cacheDirectory=".phpunit.cache"
>
<coverage>
<coverage/>
<testsuite name="Box Manifest Test Suite">
<directory suffix="Test.php">tests/</directory>
</testsuite>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<testsuite name="Box Manifest Test Suite">
<directory>tests/</directory>
</testsuite>
</source>
</phpunit>

0 comments on commit d820b94

Please sign in to comment.