Skip to content

Commit ba247db

Browse files
committed
release: 1.2.0
1 parent 79ab891 commit ba247db

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [1.2.0] - 2024-12-05
88

9+
### Added
10+
11+
- Expand `laminas/laminas-cache` support to also include `^4.0`
12+
- Expand `neos/cache` support to also include `^5.0 | ^6.0| ^7.0| ^8.0`
13+
914
### Changed
1015

1116
- Bump minimum supported PHP version to 8.2.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ The following implementations can be discovered, but require manual instantiatio
4242
- [cache/mongodb-adapter](https://github.com/php-cache/mongodb-adapter) ^1.0
4343
- [cache/predis-adapter](https://github.com/php-cache/predis-adapter) ^1.0
4444
- [cache/redis-adapter](https://github.com/php-cache/redis-adapter) ^1.0
45-
- [laminas/laminas-cache](https://github.com/laminas/laminas-cache) ^2.8 | ^3.0
45+
- [laminas/laminas-cache](https://github.com/laminas/laminas-cache) ^2.8 | ^3.0 | ^4.0
4646
- [matthiasmullie/scrapbook](https://github.com/matthiasmullie/scrapbook) ^1.0
47-
- [neos/cache](https://github.com/neos/cache) ^4.0
47+
- [neos/cache](https://github.com/neos/cache) ^4.0 | ^ 5.0 | ^ 6.0 | ^ 7.0 | ^ 8.0
4848
- [psx/cache](https://github.com/apioo/psx-cache) ^1.0
4949
- [symfony/cache](https://github.com/symfony/cache) ^3.1 | ^4.0 | ^5.0 | ^6.0 | ^7.0
5050
- [symfony/symfony](https://github.com/symfony/symfony) ^3.1.4 | ^4.0 | ^5.0 | ^6.0 | ^7.0

src/Implementations/Psr6/Caches.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static function allCandidates(): CandidatesCollection
5353

5454
self::$extendedCandidates->add(CandidateEntity::create(
5555
package: 'laminas/laminas-cache',
56-
version: '^2.8 | ^3.0',
56+
version: '^2.8 | ^3.0 | ^4.0',
5757
builder: static fn () => null,
5858
));
5959

@@ -95,7 +95,7 @@ public static function allCandidates(): CandidatesCollection
9595

9696
self::$extendedCandidates->add(CandidateEntity::create(
9797
package: 'neos/cache',
98-
version: '^4.0',
98+
version: '^4.0 | ^5.0 | ^6.0| ^7.0| ^8.0',
9999
builder: static fn () => null,
100100
));
101101

0 commit comments

Comments
 (0)