Skip to content

Commit a0b4224

Browse files
jordisala1991stof
andauthored
Add Symfony 6 support (#445)
Add Symfony 6 support Co-authored-by: Christophe Coevoet <[email protected]>
1 parent 14ce286 commit a0b4224

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- run: |
6767
sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' composer.json;
6868
if: matrix.symfony
69-
- run: composer config minimum-stability dev && composer config prefer-stable true
69+
- run: composer config minimum-stability dev
7070
if: matrix.dev
7171
- run: composer update --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
7272
- run: vendor/bin/phpunit

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"require": {
2222
"php": "^7.2 || ^8.0",
2323
"knplabs/knp-menu": "^3.1",
24-
"symfony/framework-bundle": "^3.4 | ^4.4 | ^5.0"
24+
"symfony/framework-bundle": "^3.4 | ^4.4 | ^5.0 | ^6.0"
2525
},
2626
"require-dev": {
2727
"phpunit/phpunit": "^8.5 | ^9.5",
28-
"symfony/expression-language": "^3.4 | ^4.4 | ^5.0",
29-
"symfony/phpunit-bridge": "^5.2",
30-
"symfony/templating": "^3.4 | ^4.4 | ^5.0"
28+
"symfony/expression-language": "^3.4 | ^4.4 | ^5.0 | ^6.0",
29+
"symfony/phpunit-bridge": "^5.2 | ^6.0",
30+
"symfony/templating": "^3.4 | ^4.4 | ^5.0 | ^6.0"
3131
},
3232
"autoload": {
3333
"psr-4": { "Knp\\Bundle\\MenuBundle\\": "src" }

0 commit comments

Comments
 (0)