Skip to content

Commit b43758e

Browse files
committed
Remove PHPUnit 7 and 8
PHPUnit 9 supports all the PHP versions that we need. Also update the PHPUnit config schema.
1 parent 09691fc commit b43758e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"ext-ctype": "*"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
22+
"phpunit/phpunit": "^9.0",
2323
"ircmaxell/php-yacc": "^0.0.7"
2424
},
2525
"extra": {

phpunit.xml.dist

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
</testsuite>
1313
</testsuites>
1414

15-
<filter>
16-
<whitelist>
15+
<coverage>
16+
<include>
1717
<directory suffix=".php">./lib/PhpParser/</directory>
18-
</whitelist>
19-
</filter>
18+
</include>
19+
</coverage>
2020
</phpunit>

0 commit comments

Comments
 (0)