├── LICENSE ├── README.md ├── UPGRADE-1.11.md ├── UPGRADE-1.4.md ├── composer.json └── lib └── Doctrine └── Common └── Cache ├── Cache.php ├── CacheProvider.php ├── ClearableCache.php ├── FlushableCache.php ├── MultiDeleteCache.php ├── MultiGetCache.php ├── MultiOperationCache.php ├── MultiPutCache.php └── Psr6 ├── CacheAdapter.php ├── CacheItem.php ├── DoctrineProvider.php ├── InvalidArgument.php └── TypedCacheItem.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-1.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/UPGRADE-1.11.md -------------------------------------------------------------------------------- /UPGRADE-1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/UPGRADE-1.4.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/composer.json -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/Cache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/CacheProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/CacheProvider.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/ClearableCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/ClearableCache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/FlushableCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/FlushableCache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/MultiDeleteCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/MultiDeleteCache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/MultiGetCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/MultiGetCache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/MultiOperationCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/MultiOperationCache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/MultiPutCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/MultiPutCache.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/Psr6/CacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/Psr6/CacheAdapter.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/Psr6/CacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/Psr6/CacheItem.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/Psr6/DoctrineProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/Psr6/DoctrineProvider.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/Psr6/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/Psr6/InvalidArgument.php -------------------------------------------------------------------------------- /lib/Doctrine/Common/Cache/Psr6/TypedCacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/cache/HEAD/lib/Doctrine/Common/Cache/Psr6/TypedCacheItem.php --------------------------------------------------------------------------------