Skip to content

Commit

Permalink
Add Symfony 6 support (#445)
Browse files Browse the repository at this point in the history
Add Symfony 6 support

Co-authored-by: Christophe Coevoet <[email protected]>
  • Loading branch information
jordisala1991 and stof authored Oct 24, 2021
1 parent 14ce286 commit a0b4224
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- run: |
sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' composer.json;
if: matrix.symfony
- run: composer config minimum-stability dev && composer config prefer-stable true
- run: composer config minimum-stability dev
if: matrix.dev
- run: composer update --no-interaction --no-progress --ansi ${{ matrix.composer_option }}
- run: vendor/bin/phpunit
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"require": {
"php": "^7.2 || ^8.0",
"knplabs/knp-menu": "^3.1",
"symfony/framework-bundle": "^3.4 | ^4.4 | ^5.0"
"symfony/framework-bundle": "^3.4 | ^4.4 | ^5.0 | ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 | ^9.5",
"symfony/expression-language": "^3.4 | ^4.4 | ^5.0",
"symfony/phpunit-bridge": "^5.2",
"symfony/templating": "^3.4 | ^4.4 | ^5.0"
"symfony/expression-language": "^3.4 | ^4.4 | ^5.0 | ^6.0",
"symfony/phpunit-bridge": "^5.2 | ^6.0",
"symfony/templating": "^3.4 | ^4.4 | ^5.0 | ^6.0"
},
"autoload": {
"psr-4": { "Knp\\Bundle\\MenuBundle\\": "src" }
Expand Down

0 comments on commit a0b4224

Please sign in to comment.