Skip to content

Commit c17476c

Browse files
committed
PHP 8.5
1 parent 0e7c9bb commit c17476c

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, 8.1]
11+
php: [8.5, 8.4, 8.3, 8.2, 8.1]
1212
dependency-version: [prefer-stable]
1313
os: [ubuntu-latest, windows-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
@@ -31,10 +31,10 @@
3131
"psr-4": {"ICalendarOrg\\": "src/ICalendarOrg/"}
3232
},
3333
"require": {
34-
"php": ">=7.4 <8.5"
34+
"php": ">=7.4 <8.6"
3535
},
3636
"require-dev": {
37-
"phpunit/phpunit": "<12.0",
37+
"phpunit/phpunit": ">=12.0",
3838
"friendsofphp/php-cs-fixer": "^3.3",
3939
"phpstan/phpstan": "^2.0",
4040
"phpfui/phpunit-syntax-coverage": "dev-master"

0 commit comments

Comments
 (0)