Skip to content

Commit c00642d

Browse files
authored
Allow symfony 7.0 (#471)
* Allow symfony 7.0 * retrigger checks * update all user Symfony components allow version 7 * add SF7 to code checks configuration
1 parent f527f75 commit c00642d

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/code_checks.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555
- php: '8.1'
5656
dependencies: highest
5757
symfony: '6.2.*'
58+
59+
- php: '8.2'
60+
dependencies: highest
61+
symfony: '7.0.*'
5862
steps:
5963
- name: Checkout
6064
uses: actions/checkout@v3

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"symfony/framework-bundle": "^5.4|^6.0",
21-
"symfony/serializer": "^5.4|^6.0.1",
22-
"symfony/console": "^5.4|^6.0",
20+
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
21+
"symfony/serializer": "^5.4|^6.0.1|^7.0",
22+
"symfony/console": "^5.4|^6.0|^7.0",
2323
"willdurand/jsonp-callback-validator": "~1.1|^2.0"
2424
},
2525
"require-dev": {
26-
"symfony/expression-language": "^5.4|^6.0",
27-
"symfony/phpunit-bridge": "^5.4|^6.0"
26+
"symfony/expression-language": "^5.4|^6.0|^7.0",
27+
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
2828
},
2929
"autoload": {
3030
"psr-4": { "FOS\\JsRoutingBundle\\": "" },

0 commit comments

Comments
 (0)