Skip to content

Commit 9fd6eae

Browse files
committed
Merge branch '2.x' into 3.x
2 parents 5a25039 + 56e8f1a commit 9fd6eae

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', 'nightly']
23+
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', 'nightly']
2424

2525
continue-on-error: ${{ matrix.php == 'nightly' }}
2626

.github/workflows/test.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
23+
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
2424
phpunit: ['auto']
2525
coverage: [true]
2626
experimental: [false]
@@ -105,6 +105,10 @@ jobs:
105105
phpunit: '11.3.6'
106106
coverage: true
107107
experimental: false
108+
- php: '8.5'
109+
phpunit: '11.5.37'
110+
coverage: true
111+
experimental: false
108112

109113
# Experimental builds.
110114
- php: 'nightly'
@@ -232,6 +236,7 @@ jobs:
232236
# - PHPUnit 8 supports PHP 8.2 as of PHPUnit 8.5.19 (for our purposes).
233237
# - PHPUnit 8 supports PHP 8.3 as of PHPUnit 8.5.19 (for our purposes).
234238
# - PHPUnit 8 supports PHP 8.4 as of PHPUnit 8.5.40 (for our purposes).
239+
# - PHPUnit 8 supports PHP 8.5 as of PHPUnit 8.5.43 (for our purposes).
235240
# - PHPUnit 8 does not support running code coverage on PHP 8.0 or higher.
236241
- php: '7.2'
237242
phpunit: '8.0'
@@ -243,9 +248,9 @@ jobs:
243248
coverage: true
244249
- php: '8.0'
245250
phpunit: '8.5.12'
246-
- php: '8.4'
247-
phpunit: '8.5.40'
248-
- php: '8.4'
251+
- php: '8.5'
252+
phpunit: '8.5.43'
253+
- php: '8.5'
249254
phpunit: '8'
250255

251256
# PHPUnit 9 is fully supported for the officially supported PHP versions.
@@ -255,6 +260,7 @@ jobs:
255260
# - PHPUnit 9 supports PHP 8.2 as of PHPUnit 9.5.8 (for our purposes).
256261
# - PHPUnit 9 supports PHP 8.3 as of PHPUnit 9.5.8 (for our purposes).
257262
# - PHPUnit 9 supports PHP 8.4 as of PHPUnit 9.6.21 (for our purposes).
263+
# - PHPUnit 9 supports PHP 8.5 as of PHPUnit 9.6.26 (for our purposes).
258264
- php: '7.3'
259265
phpunit: '9.0'
260266
coverage: true
@@ -272,13 +278,18 @@ jobs:
272278
phpunit: '9.6.21'
273279
- php: '8.4'
274280
phpunit: '9'
281+
- php: '8.5'
282+
phpunit: '9.6.26'
283+
- php: '8.5'
284+
phpunit: '9'
275285
coverage: true
276286

277287
# PHPUnit 10 is NOT supported in PHPUnit Polyfills 3.x.
278288

279289
# PHPUnit 11 is fully supported for the officially supported PHP versions.
280290
# Caveats:
281291
# - PHPUnit 11 supports PHP 8.4 as of PHPUnit 11.3.6 (for our purposes).
292+
# - PHPUnit 11 supports PHP 8.5 as of PHPUnit 11.5.37 (for our purposes).
282293
#
283294
# Mind: code coverage can not be run on PHPUnit 11.2.0 - 11.3.2.
284295
# For a full explanation, see above (in the strategy for the other test job).
@@ -296,6 +307,10 @@ jobs:
296307
phpunit: '11.3.6'
297308
- php: '8.4'
298309
phpunit: '11'
310+
- php: '8.5'
311+
phpunit: '11.5.37'
312+
- php: '8.5'
313+
phpunit: '11'
299314
coverage: true
300315

301316
# Experimental builds.

0 commit comments

Comments
 (0)