Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

php 8.3 support #61

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[PSR-16 SimpleCache](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-16-simple-cache.md)
implementation that accepts a Doctrine Cache and adapts it for the PSR-16 standards.

## Installation

This will install `doctrine/cache` if not already installed.
Expand Down Expand Up @@ -44,8 +44,8 @@ final class MyCacheFactory

### BC Breaks in 2.0

* Support for `MultiOperationCache` added, includes support for `deleteMultiple` in Doctrine 1.7 breaks:
* `CacheException` static constructors `fromNonMultiGetCache` and `fromNonMultiPutCache` have been replaced with
`fromNonMultiOperationCache`.
* `SimpleCacheAdapter` now requires an adapter implementing `MultiOperationCache`, and no longer specifically
requires a cache implementing `MultiGetCache` or `MultiPutCache` explicitly.
* Support for `MultiOperationCache` added, includes support for `deleteMultiple` in Doctrine 1.7 breaks:
* `CacheException` static constructors `fromNonMultiGetCache` and `fromNonMultiPutCache` have been replaced with
`fromNonMultiOperationCache`.
* `SimpleCacheAdapter` now requires an adapter implementing `MultiOperationCache`, and no longer specifically
requires a cache implementing `MultiGetCache` or `MultiPutCache` explicitly.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Doctrine Cache adapter for PSR-16 Simple Cache",
"type": "library",
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
krumynin marked this conversation as resolved.
Show resolved Hide resolved
"doctrine/cache": "^1.13.0",
"psr/simple-cache": "^1.0.1"
},
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading