Skip to content

Commit 9a7fd3b

Browse files
committed
chore(deps): update to latest
1 parent 85e52b3 commit 9a7fd3b

2 files changed

Lines changed: 13 additions & 11 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ vendor
44
logs
55
.php_cs.cache
66
.phpunit.result.cache
7+
.DS_Store

phpunit.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
<phpunit colors="true" bootstrap="vendor/autoload.php">
2-
<testsuites>
3-
<testsuite name="unit">
4-
<directory>./tests/</directory>
5-
</testsuite>
6-
</testsuites>
7-
<filter>
8-
<whitelist>
9-
<directory suffix=".php">./src/</directory>
10-
</whitelist>
11-
</filter>
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage>
4+
<include>
5+
<directory suffix=".php">./src/</directory>
6+
</include>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="unit">
10+
<directory>./tests/</directory>
11+
</testsuite>
12+
</testsuites>
1213
</phpunit>

0 commit comments

Comments
 (0)