Skip to content

Commit 766400b

Browse files
authored
Merge pull request #14 from loic425/symfony-7
Add support for Symfony 7
2 parents c39d464 + 63d5153 commit 766400b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
php: [7.4, 8.0, 8.1]
23-
symfony: [4.4.*, 5.4.*, 6.0.*]
22+
php: [8.1, 8.2, 8.3]
23+
symfony: [5.4.*, 6.4.*, 7.0.*]
2424
exclude:
25-
- php: 7.4
26-
symfony: 6.0.*
25+
- php: 8.1
26+
symfony: 7.0.*
2727

2828
steps:
2929
-

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.4 || ^8.0",
13+
"php": "^8.1",
1414

1515
"doctrine/orm": "^2.4",
16-
"symfony/property-access": "^4.4|^5.4|^6.0"
16+
"symfony/property-access": "^5.4|^6.4|^7.0"
1717
},
1818
"autoload": {
1919
"psr-4": { "SyliusLabs\\AssociationHydrator\\": "src/" }
2020
}
2121
}
22+

0 commit comments

Comments
 (0)