Bridge between React cache and PSR caching implementation.
Via composer:
composer require niko9911/react-psr-cache-bridge
Will work like normal PHP bridge.
Example:
<?php
declare(strict_types=1);
$psr = new Cache(); // Object implementing PSR Cache.
$react = new \Niko9911\React\Cache\Bridge\ReactPsrCacheBridge($psr);
Licensed under the MIT license.