Skip to content

Commit 0f38f75

Browse files
authored
PHP 8.4 Compatibility (#212)
1 parent 922cec2 commit 0f38f75

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php-versions: ['8.1', '8.2', '8.3']
16+
php-versions: ['8.2', '8.3', '8.4']
1717

1818
steps:
1919
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v3.1.0] - 2025-01-28
8+
### Changed
9+
- Support for PHP 8.1 dropped.
10+
711
## [v3.0.0] - 2024-02-06
812
This version drops support for older PHPs, adds stricter types internally, and fixes some bugs.
913

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=8.0",
17+
"php": ">=8.2",
1818
"guzzlehttp/guzzle": "^7.0"
1919
},
2020
"require-dev": {

0 commit comments

Comments
 (0)