Skip to content

Commit

Permalink
Add support for PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Aug 16, 2024
1 parent 6c59a01 commit 0645b9f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# CHANGELOG

## [Unreleased]
## Unreleased

## [1.2.0] - 2024-07-27
* Added support for PHP 8.4

## 1.2.0 - 2024-07-27

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


## [1.1.0] - 2024-03-02
## 1.1.0 - 2024-03-02

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

## [1.0.0] - 2023-12-09
## 1.0.0 - 2023-12-09

Initial Release

[Unreleased]: https://github.com/beste/in-memory-cache-php/compare/1.2.0...main
[1.2.0]: https://github.com/beste/in-memory-cache-php/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/beste/in-memory-cache-php/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/beste/in-memory-cache-php/tree/1.0.0
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"psr/cache": "^2.0 || ^3.0",
"psr/clock": "^1.0"
},
Expand Down

0 comments on commit 0645b9f

Please sign in to comment.