Skip to content

Commit 27f695b

Browse files
committed
composer.json: Upgrade phpunit/phpunit to ^9.5
1 parent 64f768b commit 27f695b

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"require-dev": {
2525
"mediawiki/mediawiki-phan-config": "0.10.6",
2626
"php-parallel-lint/php-parallel-lint": "^1.3.0",
27-
"phpunit/phpunit": "^8.5.15",
27+
"phpunit/phpunit": "^9.5",
2828
"squizlabs/php_codesniffer": "^3.6.0"
2929
},
3030
"scripts": {

phpunit.xml.dist

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit colors="true"
3-
beStrictAboutTestsThatDoNotTestAnything="true"
4-
beStrictAboutOutputDuringTests="true">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">./src</directory>
6+
</include>
7+
<report>
8+
<clover outputFile="clover.xml"/>
9+
<html outputDirectory="coverage/"/>
10+
</report>
11+
</coverage>
512
<testsuites>
613
<testsuite name="Tests">
714
<directory>./test/suites</directory>
815
</testsuite>
916
</testsuites>
10-
<filter>
11-
<whitelist processUncoveredFilesFromWhitelist="true">
12-
<directory suffix=".php">./src</directory>
13-
</whitelist>
14-
</filter>
15-
<logging>
16-
<log type="coverage-clover" target="clover.xml"/>
17-
<log type="coverage-html" target="coverage/"/>
18-
</logging>
17+
<logging/>
1918
</phpunit>

0 commit comments

Comments
 (0)