Skip to content

Commit 9efe1db

Browse files
committed
Limit PHP support to 7.4 and 8.0 for Symfony 5
Update requirements to strictly PHP 7.4.x and 8.0.x only (no 8.1+): - composer.json: php ^7.4 || ~8.0.0 - CI matrix: Remove PHP 8.1, keep only 7.4 and 8.0 This makes symfony-5 a true transition branch between legacy (7.4) and symfony-6+ which requires 8.0+/8.1+.
1 parent c192fdf commit 9efe1db

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ jobs:
4242
- php: '8.0'
4343
dependencies: 'highest'
4444
symfony_require: '5.4.*'
45-
- php: '8.1'
46-
dependencies: 'highest'
47-
symfony_require: '5.4.*'
4845
fail-fast: false
4946
steps:
5047
- name: Checkout

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"issues": "https://github.com/FriendsOfSymfony/FOSCommentBundle/issues"
2424
},
2525
"require": {
26-
"php": "^7.4 || ^8.0",
26+
"php": "^7.4 || ~8.0.0",
2727
"friendsofsymfony/rest-bundle": "^2.8 || ^3.0",
2828
"jms/serializer-bundle": "^2.0 || ^3.0 || ^4.0 || ^5.0",
2929
"symfony/framework-bundle": "^5.0",

0 commit comments

Comments
 (0)