Skip to content

Commit 3c8e756

Browse files
kbondNyholm
andauthored
feat: Symfony 7 support (#76)
* feat: Symfony 7 support Adjusted the CI test matrix to add PHP 8.3 and only supported Symfony versions * minor --------- Co-authored-by: Nyholm <[email protected]>
1 parent 0e721e5 commit 3c8e756

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ jobs:
1313
php:
1414
- '8.1'
1515
- '8.2'
16+
- '8.3'
1617
dependency:
1718
- ''
1819
symfony:
1920
- '5.4.*'
2021
- '6.3.*'
21-
- '6.4.*@beta'
22-
- '7.0.*@beta'
22+
- '6.4.*'
23+
- '7.0.*'
2324
include:
2425
- php: '8.1'
2526
symfony: '5.4.*'
2627
dependency: 'lowest'
2728
exclude:
2829
- php: '8.1'
29-
symfony: '7.0.*@beta'
30+
symfony: '7.0.*'
3031
fail-fast: false
3132
steps:
3233
- name: Checkout

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"require": {
1616
"php": "^8.1",
17-
"symfony/config": "^5.4 || ^6.3 || ^7.0"
17+
"symfony/config": "^5.4 || ^6.2 || ^7.0"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "^9.6 || ^10.0"
@@ -33,5 +33,7 @@
3333
"branch-alias": {
3434
"dev-master": "5.1.x-dev"
3535
}
36-
}
36+
},
37+
"minimum-stability": "dev",
38+
"prefer-stable": true
3739
}

0 commit comments

Comments
 (0)