Skip to content

Commit 3c45941

Browse files
authored
Run tests on Symfony 7.3 and 7.4, add support for Symfony 8.0 (#89)
1 parent 8e8a690 commit 3c45941

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,20 @@ jobs:
2020
symfony:
2121
- '5.4.*'
2222
- '6.4.*'
23-
- '7.0.*'
23+
- '7.3.*'
2424
include:
2525
- php: '8.1'
2626
symfony: '5.4.*'
2727
dependency: 'lowest'
28+
- php: '8.4'
29+
symfony: '7.4.*@dev'
30+
dependency: ''
31+
- php: '8.4'
32+
symfony: '8.0.*@dev'
33+
dependency: ''
2834
exclude:
2935
- php: '8.1'
30-
symfony: '7.0.*'
36+
symfony: '7.3.*'
3137
fail-fast: false
3238
steps:
3339
- name: Checkout

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require": {
1616
"php": "^8.1",
1717
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0",
18-
"symfony/config": "^5.4 || ^6.2 || ^7.0"
18+
"symfony/config": "^5.4 || ^6.4 || ^7.0 || ^8.0"
1919
},
2020
"autoload": {
2121
"psr-4" : { "Matthias\\SymfonyConfigTest\\" : "" },
@@ -26,7 +26,7 @@
2626
},
2727
"extra": {
2828
"branch-alias": {
29-
"dev-master": "5.1.x-dev"
29+
"dev-master": "6.x-dev"
3030
}
3131
},
3232
"minimum-stability": "dev",

0 commit comments

Comments
 (0)