Skip to content

Commit

Permalink
Allow Symfony 6
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Alliaume committed Jul 18, 2021
1 parent 28df086 commit 48cd297
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
include:
- dependencies: "lowest"
php-version: "7.2"
- dependencies: "highest"
php-version: "8.0"
stability: dev

steps:
- name: "Checkout"
Expand All @@ -43,6 +46,10 @@ jobs:
coverage: "pcov"
ini-values: "zend.assertions=1"

- name: "Configure Composer minimum stability"
if: matrix.stability
run: "composer config minimum-stability ${{ matrix.stability }}"

- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
with:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": "^7.2|^8.0",
"symfony/framework-bundle": "~3.4|~4.0|~5.0",
"symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0",
"doctrine/doctrine-bundle": "~1.0|~2.0",
"doctrine/migrations": "^3.2"
},
Expand Down

0 comments on commit 48cd297

Please sign in to comment.