Skip to content

Commit c8c1398

Browse files
authored
Merge pull request #96 from simPod/phpunit-95
Bump PHPUnit to v9.5
2 parents 1bfec80 + e765cf9 commit c8c1398

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
strategy:
1717
matrix:
1818
php-version:
19-
- "7.3"
2019
- "7.4"
2120
- "8.0"
2221
- "8.1"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"require": {
12-
"php": "^7.3 || ~8.0.0 || ~8.1.0",
12+
"php": "^7.4 || ~8.0.0 || ~8.1.0",
1313
"ext-json": "*"
1414
},
1515
"require-dev": {

phpunit.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
colors="true"
99
>
1010
<testsuites>
11-
<testsuite>
11+
<testsuite name="DS Tests">
1212
<directory>vendor/php-ds/tests/tests</directory>
1313
</testsuite>
1414
</testsuites>
15-
<filter>
16-
<whitelist>
15+
<coverage>
16+
<include>
1717
<directory>src</directory>
18-
</whitelist>
19-
</filter>
20-
<logging>
21-
<log type="coverage-html" target="build/logs/coverage" />
22-
<log type="coverage-text" target="build/logs/coverage.txt" />
23-
<log type="coverage-clover" target="build/logs/coverage.xml" />
24-
</logging>
18+
</include>
19+
<report>
20+
<clover outputFile="build/logs/coverage.xml" />
21+
<html outputDirectory="build/logs/coverage" />
22+
<text outputFile="build/logs/coverage.txt" />
23+
</report>
24+
</coverage>
2525
</phpunit>

0 commit comments

Comments
 (0)