Skip to content

Commit 69cb36a

Browse files
committed
feature #202 feat: allow symfony 7 (Chris8934)
This PR was merged into the main branch. Discussion ---------- feat: allow symfony 7 Commits ------- d255fe5 feat: allow symfony 7
2 parents b69625f + d255fe5 commit 69cb36a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/ci.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
- php: 8.1
2121
deps: lowest
2222
symfony: '*'
23+
- php: 8.3
24+
symfony: '7.0.*'
2325
steps:
2426
- uses: zenstruck/.github@php-test-symfony
2527
with:

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919

2020
"require": {
2121
"php": ">=8.1",
22-
"symfony/dependency-injection": "^5.4|^6.0",
23-
"symfony/translation": "^5.4|^6.0",
24-
"symfony/config": "^5.4|^6.0"
22+
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
23+
"symfony/translation": "^5.4|^6.0|^7.0",
24+
"symfony/config": "^5.4|^6.0|^7.0"
2525
},
2626

2727
"require-dev": {
28-
"symfony/framework-bundle": "^5.4|^6.0",
29-
"symfony/phpunit-bridge": "^5.4|^6.0",
30-
"symfony/twig-bundle": "^5.4|^6.0",
28+
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
29+
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
30+
"symfony/twig-bundle": "^5.4|^6.0|^7.0",
3131
"phpstan/phpstan": "^1.11",
3232
"phpunit/phpunit": "^9.6"
3333
},

0 commit comments

Comments
 (0)