Skip to content

Commit f23ec34

Browse files
authored
Allow/test with Symfony 7 (#323)
1 parent cfbc483 commit f23ec34

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/integrate.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,20 @@ jobs:
6666
php-version:
6767
- 8.0
6868
- 8.1
69+
- 8.2
6970

7071
symfony-version:
7172
- 5
7273
- 6
74+
- 7
7375

7476
exclude:
7577
- php-version: 8.0
7678
symfony-version: 6
79+
- php-version: 8.0
80+
symfony-version: 7
81+
- php-version: 8.1
82+
symfony-version: 7
7783

7884
steps:
7985
- name: "Checkout"

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
"require": {
1313
"php": "^7.4 || ^8.0",
1414
"ext-simplexml": "*",
15-
"symfony/framework-bundle": "^5.0 || ^6.0",
15+
"symfony/framework-bundle": "^5.0 || ^6.0 || ^7.0",
1616
"vimeo/psalm": "^5.1"
1717
},
1818
"require-dev": {
19-
"symfony/form": "^5.0 || ^6.0",
19+
"symfony/form": "^5.0 || ^6.0 || ^7.0",
2020
"doctrine/annotations": "^1.8|^2",
2121
"doctrine/orm": "^2.9",
2222
"phpunit/phpunit": "~7.5 || ~9.5",
2323
"symfony/cache-contracts": "^1.0 || ^2.0",
2424
"symfony/console": "*",
25-
"symfony/messenger": "^5.0 || ^6.0",
25+
"symfony/messenger": "^5.0 || ^6.0 || ^7.0",
2626
"symfony/security-guard": "*",
27-
"symfony/serializer": "^5.0 || ^6.0",
27+
"symfony/serializer": "^5.0 || ^6.0 || ^7.0",
2828
"symfony/validator": "*",
2929
"twig/twig": "^2.10 || ^3.0",
3030
"weirdan/codeception-psalm-module": "dev-master"

0 commit comments

Comments
 (0)