Skip to content

Commit

Permalink
Add support for Symfony 6
Browse files Browse the repository at this point in the history
  • Loading branch information
loic425 committed May 30, 2022
1 parent 4761175 commit c97013e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
symfony: [^4.4, ^5.2]
php: ["8.0"]
symfony: ["^5.4", "^6.0"]

steps:
- uses: actions/checkout@v2
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Restrict Symfony version
if: matrix.symfony != ''
run: |
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.10"
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.17"
composer config extra.symfony.require "${{ matrix.symfony }}"
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
}
],
"require": {
"php": "^7.3 || ^8.0",
"php": "^8.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/migrations": "^3.0",
"marcj/topsort": "^1.1",
"symfony/framework-bundle": "^4.4 || ^5.2"
"symfony/framework-bundle": "^5.4 || ^6.0"
},
"require-dev": {
"infection/infection": "^0.21.0",
Expand Down

0 comments on commit c97013e

Please sign in to comment.