Skip to content

Commit e867d93

Browse files
committed
Add support for PHP 8.4
1 parent 6c59a01 commit e867d93

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- "8.1"
3131
- "8.2"
3232
- "8.3"
33+
- "8.4"
3334

3435
env:
3536
extensions: ctype, dom, intl, json, mbstring, openssl, xml, zip, zlib

CHANGELOG.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# CHANGELOG
22

3-
## [Unreleased]
3+
## Unreleased
44

5-
## [1.2.0] - 2024-07-27
5+
* Added support for PHP 8.4
6+
7+
## 1.2.0 - 2024-07-27
68

79
* The [PSR-6 definition on what makes a valid cache key](https://www.php-fig.org/psr/psr-6/#definitions), it is said that
810
keys must support keys consisting of the characters `A-Z`, `a-z`, `0-9`, `_`, and `.` in any order in UTF-8
@@ -12,16 +14,11 @@
1214
* The arbitrary maximum key length of 64 characters has been removed.
1315

1416

15-
## [1.1.0] - 2024-03-02
17+
## 1.1.0 - 2024-03-02
1618

1719
* The Cache can now be instantiated without providing a [PSR-20](https://www.php-fig.org/psr/psr-20/) clock implementation.
1820
* The library doesn't depend on the [`beste/clock` library](https://github.com/beste/clock) anymore.
1921

20-
## [1.0.0] - 2023-12-09
22+
## 1.0.0 - 2023-12-09
2123

2224
Initial Release
23-
24-
[Unreleased]: https://github.com/beste/in-memory-cache-php/compare/1.2.0...main
25-
[1.2.0]: https://github.com/beste/in-memory-cache-php/compare/1.1.0...1.2.0
26-
[1.1.0]: https://github.com/beste/in-memory-cache-php/compare/1.0.0...1.1.0
27-
[1.0.0]: https://github.com/beste/in-memory-cache-php/tree/1.0.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"psr/cache": "^2.0 || ^3.0",
1616
"psr/clock": "^1.0"
1717
},

0 commit comments

Comments
 (0)