Skip to content

Commit 9ee4529

Browse files
authored
Require PHPUnit 12 to reactivate renovatebot and catch regressions early (#935)
* Require PHPUnit 12 to reactivate renovatebot and catch regressions early * Require PHP 8.3 as well
1 parent f324acf commit 9ee4529

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/ci.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
php-version:
20-
- "8.2"
20+
- "8.3"
2121

2222
steps:
2323
- uses: "actions/checkout@v4"
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
php-version:
42-
- "8.2"
42+
- "8.3"
4343

4444
steps:
4545
- uses: "actions/checkout@v4"
@@ -62,7 +62,6 @@ jobs:
6262
strategy:
6363
matrix:
6464
php-version:
65-
- "8.2"
6665
- "8.3"
6766
- "8.4"
6867
dependencies:
@@ -90,7 +89,7 @@ jobs:
9089
# strategy:
9190
# matrix:
9291
# php-version:
93-
# - "8.2"
92+
# - "8.3"
9493
#
9594
# steps:
9695
# - uses: "actions/checkout@v4"
@@ -127,7 +126,7 @@ jobs:
127126
strategy:
128127
matrix:
129128
php-version:
130-
- "8.2"
129+
- "8.3"
131130

132131
steps:
133132
- uses: "actions/checkout@v4"
@@ -147,7 +146,7 @@ jobs:
147146
strategy:
148147
matrix:
149148
php-version:
150-
- "8.2"
149+
- "8.3"
151150

152151
steps:
153152
- uses: "actions/checkout@v4"

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,26 @@
3333
}
3434
],
3535
"require": {
36-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
36+
"php": "~8.3.0 || ~8.4.0",
3737
"ext-dom": "*",
3838
"ext-pcre": "*",
3939
"ext-reflection": "*",
4040
"ext-simplexml": "*",
4141
"fidry/cpu-core-counter": "^1.2.0",
4242
"jean85/pretty-package-versions": "^2.1.0",
43-
"phpunit/php-code-coverage": "^11.0.9 || ^12.0.4",
44-
"phpunit/php-file-iterator": "^5.1.0 || ^6",
45-
"phpunit/php-timer": "^7.0.1 || ^8",
46-
"phpunit/phpunit": "^11.5.11 || ^12.0.6",
47-
"sebastian/environment": "^7.2.0 || ^8",
43+
"phpunit/php-code-coverage": "^12.0.4",
44+
"phpunit/php-file-iterator": "^6",
45+
"phpunit/php-timer": "^8",
46+
"phpunit/phpunit": "^12.0.7",
47+
"sebastian/environment": "^8",
4848
"symfony/console": "^6.4.17 || ^7.2.1",
4949
"symfony/process": "^6.4.19 || ^7.2.4"
5050
},
5151
"require-dev": {
5252
"ext-pcov": "*",
5353
"ext-posix": "*",
5454
"doctrine/coding-standard": "^12.0.0",
55-
"phpstan/phpstan": "^2.1.7",
55+
"phpstan/phpstan": "^2.1.8",
5656
"phpstan/phpstan-deprecation-rules": "^2.0.1",
5757
"phpstan/phpstan-phpunit": "^2.0.4",
5858
"phpstan/phpstan-strict-rules": "^2.0.3",

src/WrapperRunner/ApplicationForWrapperWorker.php

+1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ public function end(): void
257257
assert(isset($this->testdoxColumns));
258258

259259
(new TestDoxResultPrinter(DefaultPrinter::from($this->testdoxFile), $this->testdoxColor, $this->testdoxColumns, false))->print(
260+
$result,
260261
$this->testdoxResultCollector->testMethodsGroupedByClass(),
261262
);
262263
}

0 commit comments

Comments
 (0)