Skip to content

Commit 415dfc4

Browse files
committed
Drop support for PHP < .8.0 + Add support for PHP 8.2, and 8.3
1 parent 366e4c4 commit 415dfc4

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ name: CI
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
7-
schedule:
8-
- cron: "0 0 * * MON"
97

108
jobs:
119
php-cs-fixer:
@@ -38,11 +36,11 @@ jobs:
3836
strategy:
3937
fail-fast: false
4038
matrix:
41-
php-version: ["7.4", "8.0", "8.1"]
39+
php-version: ["8.2", "8.3"]
4240
composer-flags: [""]
4341
name: [""]
4442
include:
45-
- php-version: 7.4
43+
- php-version: 8.1
4644
composer-flags: "--prefer-lowest"
4745
name: "(prefer lowest dependencies)"
4846

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## 5.2.0 (not released yet)
44

5+
* Drop support for PHP < .8.0
6+
* Add support for PHP 8.2, and 8.3
7+
* Drop support for Symfony < 5.4, and 6.0, 6.1, 6.2, and 6.3
8+
59
## 5.1.0 (2023-12-21)
610

711
* Add support for Support symfony/http-client 7.x

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=7.4",
14+
"php": ">=8.1",
1515
"psr/log": "^1|^2|^3",
16-
"symfony/http-client": "^5.1|^6.0|^7.0"
16+
"symfony/http-client": "^5.4|^6.4|^7.0"
1717
},
1818
"require-dev": {
19-
"symfony/phpunit-bridge": "^5.0"
19+
"symfony/phpunit-bridge": "^6.0|^7.0"
2020
},
2121
"autoload": {
2222
"psr-4": {

0 commit comments

Comments
 (0)