Skip to content

Commit

Permalink
Merge pull request #14 from loic425/symfony-7
Browse files Browse the repository at this point in the history
Add support for Symfony 7
  • Loading branch information
lchrusciel authored Jul 29, 2024
2 parents c39d464 + 63d5153 commit 766400b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1]
symfony: [4.4.*, 5.4.*, 6.0.*]
php: [8.1, 8.2, 8.3]
symfony: [5.4.*, 6.4.*, 7.0.*]
exclude:
- php: 7.4
symfony: 6.0.*
- php: 8.1
symfony: 7.0.*

steps:
-
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
}
],
"require": {
"php": "^7.4 || ^8.0",
"php": "^8.1",

"doctrine/orm": "^2.4",
"symfony/property-access": "^4.4|^5.4|^6.0"
"symfony/property-access": "^5.4|^6.4|^7.0"
},
"autoload": {
"psr-4": { "SyliusLabs\\AssociationHydrator\\": "src/" }
}
}

0 comments on commit 766400b

Please sign in to comment.