Skip to content

Commit 40827d1

Browse files
committed
PHP 8.5 support
1 parent 6b465cd commit 40827d1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.4, 8.3, 8.2]
11+
php: [8.5, 8.4, 8.3, 8.2]
1212
dependency-version: [prefer-stable]
1313
os: [ubuntu-latest]
1414

.php-cs-fixer.dist.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
$config = include 'vendor/phpfui/phpunit-syntax-coverage/PhpCsFixer.php';
10+
$config->setUnsupportedPhpVersionAllowed(true);
1011

1112
return $config->setFinder(PhpCsFixer\Finder::create()
1213
->exclude('vendor')

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=8.0 <8.5",
15+
"php": ">=8.0 <8.6",
1616
"rexxars/html-validator": ">=2.2"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "<12.0",
19+
"phpunit/phpunit": "<=12.0",
2020
"phpfui/phpunit-syntax-coverage": ">=1.0",
2121
"roave/security-advisories": "dev-latest",
2222
"friendsofphp/php-cs-fixer": "*",

0 commit comments

Comments
 (0)