Skip to content

Commit 5326362

Browse files
committed
run tests using PHPUnit 11.5
1 parent 6bd135a commit 5326362

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

phpunit.xml.dist

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.3/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
55
backupGlobals="false"
66
colors="true"
77
bootstrap="vendor/autoload.php"
8+
failOnDeprecation="true"
89
failOnRisky="true"
910
failOnWarning="true"
1011
>
@@ -24,7 +25,7 @@
2425
</exclude>
2526
</groups>
2627

27-
<coverage>
28+
<source ignoreSuppressionOfDeprecations="true">
2829
<include>
2930
<directory>./</directory>
3031
</include>
@@ -33,5 +34,9 @@
3334
<directory>./Tests</directory>
3435
<directory>./vendor</directory>
3536
</exclude>
36-
</coverage>
37+
</source>
38+
39+
<extensions>
40+
<bootstrap class="Symfony\Bridge\PhpUnit\SymfonyExtension" />
41+
</extensions>
3742
</phpunit>

0 commit comments

Comments
 (0)