This is a bridge that converts a PSR-16 cache implementation to PSR-6.
composer require topthink/cache-bridge
You need an existing PSR-16 cache object as a constructor argument to the bridge.
$simpleCache = new SimpleCache();
$psr6pool = new CacheBridge($simpleCache);