Skip to content

Commit 630aea2

Browse files
committed
Upgrade PHPUnit
1 parent f634f4f commit 630aea2

2 files changed

Lines changed: 8 additions & 9 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"league/flysystem-google-cloud-storage": "^2.0",
3535
"league/flysystem-memory": "^2.0",
3636
"league/flysystem-sftp": "^2.0",
37-
"phpunit/phpunit": "^7.4",
37+
"phpunit/phpunit": "^9.0",
3838
"symfony/dotenv": "^4.2|^5.0",
3939
"symfony/framework-bundle": "^4.2|^5.0",
4040
"symfony/var-dumper": "^4.1|^5.0",

phpunit.xml.dist

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
43
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
65
backupGlobals="false"
76
colors="true"
87
bootstrap="vendor/autoload.php">
98
<php>
10-
<ini name="error_reporting" value="-1" />
11-
<env name="SHELL_VERBOSITY" value="-1" />
9+
<ini name="error_reporting" value="-1"/>
10+
<env name="SHELL_VERBOSITY" value="-1"/>
1211
</php>
1312

1413
<testsuites>
@@ -17,9 +16,9 @@
1716
</testsuite>
1817
</testsuites>
1918

20-
<filter>
21-
<whitelist>
19+
<coverage>
20+
<include>
2221
<directory>./src/</directory>
23-
</whitelist>
24-
</filter>
22+
</include>
23+
</coverage>
2524
</phpunit>

0 commit comments

Comments
 (0)