Skip to content

Commit

Permalink
Add Symfony 6 support (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
benr77 authored Sep 2, 2022
1 parent 0c43f22 commit 9353c47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ jobs:
matrix:
operating-system: [ ubuntu-latest, windows-latest ]
php: [ '7.4', '8.0', '8.1' ]
symfony: [ '4.4.*', '5.4.*' ]
symfony: [ '4.4.*', '5.4.*', '6.0.*', '6.1.*' ]
exclude:
- { php: '7.4', symfony: '6.0.*' }
- { php: '7.4', symfony: '6.1.*' }
- { php: '8.0', symfony: '6.1.*' }

steps:
- name: Checkout
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"issues": "https://github.com/headsnet/domain-event-bundle/issues"
},
"require": {
"php": ">=7.4",
"php": "^7.4 || ^8.0.2 || ^8.1",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.0 || ^2.0",
"ramsey/uuid-doctrine": "^1.5",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/lock": "^4.4 || ^5.0",
"symfony/serializer": "^4.4 || ^5.0",
"symfony/messenger": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0"
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/lock": "^4.4 || ^5.0 || ^6.0",
"symfony/serializer": "^4.4 || ^5.0 || ^6.0",
"symfony/messenger": "^4.4 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand Down

0 comments on commit 9353c47

Please sign in to comment.