Skip to content

Commit a3deffe

Browse files
committed
PHPUnit 11.4.2 => 11.4.3.
1 parent 06d7a79 commit a3deffe

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.phive/phars.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="phpunit" version="^11.0.5" installed="11.4.2" location="./tools/phpunit" copy="true"/>
3+
<phar name="phpunit" version="^11.0.5" installed="11.4.3" location="./tools/phpunit" copy="true"/>
44
<phar name="psalm" version="^5.23.1" installed="5.26.1" location="./tools/psalm" copy="true"/>
55
<phar name="phpcs" version="^3.9.0" installed="3.10.3" location="./tools/phpcs" copy="true"/>
66
<phar name="phpcbf" version="^3.9.0" installed="3.10.3" location="./tools/phpcbf" copy="true"/>

ci/phpunit.dist.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
55
bootstrap="../vendor/autoload.php"
66
cacheDirectory="../var/cache/.phpunit.cache"
77
colors="true"
@@ -11,13 +11,18 @@
1111
beStrictAboutCoverageMetadata="true"
1212
beStrictAboutOutputDuringTests="true"
1313
beStrictAboutTestsThatDoNotTestAnything="true"
14+
displayDetailsOnPhpunitDeprecations="true"
15+
failOnDeprecation="true"
16+
failOnEmptyTestSuite="true"
1417
failOnIncomplete="true"
18+
failOnNotice="true"
19+
failOnPhpunitDeprecation="true"
1520
failOnRisky="true"
1621
failOnSkipped="true"
1722
failOnWarning="true"
1823
testdox="true"
1924
>
20-
<!-- <coverage includeUncoveredFiles="true">
25+
<!-- <coverage>
2126
<report>
2227
<html outputDirectory="phpunit/html" />
2328
</report>
@@ -27,7 +32,11 @@
2732
<testdoxHtml outputFile="phpunit/testdox.html" />
2833
</logging>-->
2934

30-
<source>
35+
<source
36+
ignoreIndirectDeprecations="true"
37+
restrictNotices="true"
38+
restrictWarnings="true"
39+
>
3140
<include>
3241
<directory suffix=".php">../src</directory>
3342
</include>

0 commit comments

Comments
 (0)