gember / cache-psr
Gember Event Sourcing Cache adapter based on psr/simple-cache (PSR-16)
Requires
- php: ^8.3
- gember/event-sourcing: dev-main
- psr/simple-cache: ^3.0
Requires (Dev)
- captainhook/captainhook: ^5.23
- friendsofphp/php-cs-fixer: ^3.58
- phpstan/phpstan: ^1.11
- phpunit/phpunit: ^11.1
- rector/rector: ^1.2
- rregeer/phpunit-coverage-check: ^0.3.1
- shipmonk/composer-dependency-analyser: ^1.5
- symfony/property-access: ^7.0
This package is auto-updated.
Last update: 2024-10-12 13:44:42 UTC
README
Gember Event Sourcing Cache adapter based on psr/simple-cache (PSR-16).
All external dependencies in Gember Event Sourcing are organized into separate packages, making it easy to swap out a vendor adapter for another.
Installation
Install with Composer:
composer require gember/cache-psr
Configuration
Bind this adapter to the Cache
interface in your service definitions.
Examples
Vanilla PHP
use Gember\CachePsr\PsrSimpleCache; $cache = new PsrSimpleCache( new SomeSimpleCacheAdapter(), // An implementation of Psr\SimpleCache\CacheInterface of your choice );
You will need to install a PSR-16 Cache implementation as well. Some available packages:
Symfony
It is recommended to use the Symfony bundle to configure Gember Event Sourcing. With this bundle, the adapter is automatically set as the default for Cache.
If you're not using the bundle, you can bind it directly to the Cache
interface.
Gember\EventSourcing\Util\Cache\Cache: class: Gember\CachePsr\PsrSimpleCache\PsrSimpleCache arguments: - '@cache.app' # or any other Symfony Cache definition of your choice