Skip to content

Commit 1bfa9c8

Browse files
committed
PHP 8.5 and Symfony 8.0 compatibility
1 parent 59ccaa0 commit 1bfa9c8

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- '8.2'
2020
- '8.3'
2121
- '8.4'
22+
'8.5'
2223
dependencies:
2324
- stable
2425
- beta
@@ -69,7 +70,7 @@ jobs:
6970

7071
- name: Run PHPStan static analysis
7172
run: vendor/bin/phpstan
72-
if: ${{ matrix.dependencies != 'lowest' && !matrix.experimental }}
73+
if: ${{ matrix.dependencies == 'stable' && !matrix.experimental }}
7374

7475
- name: Run automated tests
7576
run: vendor/bin/phpunit --coverage-text --coverage-xml build/coverage-xml --coverage-cobertura build/cobertura.xml

composer.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
},
2222
"require": {
2323
"php": ">=8.2",
24-
"symfony/event-dispatcher": "^6.4|^7.1",
25-
"symfony/framework-bundle": "^6.4|^7.1",
26-
"symfony/options-resolver": "^6.4|^7.1",
24+
"symfony/event-dispatcher": "^6.4|^7.3|^8.0",
25+
"symfony/framework-bundle": "^6.4|^7.3|^8.0",
26+
"symfony/options-resolver": "^6.4|^7.3|^8.0",
2727
"symfony/polyfill-mbstring": "^1.31.0",
28-
"symfony/property-access": "^6.4|^7.1",
29-
"symfony/translation": "^6.4|^7.1"
28+
"symfony/property-access": "^6.4|^7.3|^8.0",
29+
"symfony/translation": "^6.4|^7.3|^8.0"
3030
},
3131
"require-dev": {
3232
"ext-curl": "*",
@@ -36,20 +36,20 @@
3636
"ext-pdo_sqlite": "*",
3737
"ext-zip": "*",
3838
"doctrine/common": "^3.5.0",
39-
"doctrine/doctrine-bundle": "^2.15.0",
40-
"doctrine/orm": "^2.19.3|^3.4.1",
41-
"doctrine/persistence": "^3.4.0|^4.0.0",
42-
"friendsofphp/php-cs-fixer": "^3.75.0",
43-
"mongodb/mongodb": "^1.20.0|^2.1.0",
44-
"ocramius/package-versions": "^2.9",
45-
"openspout/openspout": "^4.23",
46-
"phpoffice/phpspreadsheet": "^2.3.3|^3.9.2|^4.5.0|^5.0.0",
39+
"doctrine/doctrine-bundle": "^2.18.1",
40+
"doctrine/orm": "^2.19.3|^3.5.7",
41+
"doctrine/persistence": "^3.4.0|^4.1.1",
42+
"friendsofphp/php-cs-fixer": "^3.90.0",
43+
"mongodb/mongodb": "^1.20.0|^2.1.2",
44+
"ocramius/package-versions": "^2.10",
45+
"openspout/openspout": "^4.28.5",
46+
"phpoffice/phpspreadsheet": "^2.3.3|^3.9.2|^4.5.0|^5.2.0",
4747
"phpstan/extension-installer": "^1.4.3",
48-
"phpstan/phpstan": "^2.1.17",
49-
"phpstan/phpstan-doctrine": "^2.0.3",
50-
"phpstan/phpstan-phpunit": "^2.0.6",
51-
"phpstan/phpstan-symfony": "^2.0.6",
52-
"phpunit/phpunit": "^10.5.38|^11.5.24",
48+
"phpstan/phpstan": "^2.1.32",
49+
"phpstan/phpstan-doctrine": "^2.0.11",
50+
"phpstan/phpstan-phpunit": "^2.0.8",
51+
"phpstan/phpstan-symfony": "^2.0.8",
52+
"phpunit/phpunit": "^10.5.38|^11.5.44",
5353
"ruflin/elastica": "^7.3.2",
5454
"symfony/browser-kit": "^6.4.13|^7.3",
5555
"symfony/css-selector": "^6.4.13|^7.3",

0 commit comments

Comments
 (0)