Skip to content

Commit

Permalink
upgrade PHPUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
Warxcell committed Feb 23, 2021
1 parent f3ea858 commit 26fea7b
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true"
bootstrap="vendor/autoload.php">
<coverage>
<include>
<directory>src</directory>
</include>
</coverage>
<php>
</php>

<testsuites>
<testsuite name="Project Test Suite">
<directory>Tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit 26fea7b

Please sign in to comment.