Skip to content

Commit 8691cd5

Browse files
committed
Adding PHP 8.5 to pipeline
1 parent 50ece31 commit 8691cd5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
php: ['8.1', '8.2', '8.3', '8.4']
13+
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
1414
dependencies: ['lowest', 'highest']
1515
steps:
1616
- name: Checkout

.php-cs-fixer.dist.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
return (new PhpCsFixer\Config())
3131
// @see https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/pull/7777
3232
->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect())
33+
->setUnsupportedPhpVersionAllowed(true)
3334
->setRules([
3435
'@Symfony' => true,
3536
'@Symfony:risky' => true,

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"symfony/uid": "^6.4 || ^7.3 || ^8.0"
3434
},
3535
"require-dev": {
36-
"php-cs-fixer/shim": "^3.84",
36+
"php-cs-fixer/shim": "^3.90",
3737
"phpstan/phpstan": "^2.1",
3838
"phpunit/phpunit": "^10.5",
3939
"psr/cache": "^3.0",

0 commit comments

Comments
 (0)