├── AbstractCachePool.php ├── CacheItem.php ├── Changelog.md ├── Exception ├── CacheException.php ├── CachePoolException.php └── InvalidArgumentException.php ├── HasExpirationTimestampInterface.php ├── JsonBinaryArmoring.php ├── LICENSE ├── PhpCacheItem.php ├── PhpCachePool.php ├── README.md ├── TagSupportWithArray.php └── composer.json /AbstractCachePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/AbstractCachePool.php -------------------------------------------------------------------------------- /CacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/CacheItem.php -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/Changelog.md -------------------------------------------------------------------------------- /Exception/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/Exception/CacheException.php -------------------------------------------------------------------------------- /Exception/CachePoolException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/Exception/CachePoolException.php -------------------------------------------------------------------------------- /Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /HasExpirationTimestampInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/HasExpirationTimestampInterface.php -------------------------------------------------------------------------------- /JsonBinaryArmoring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/JsonBinaryArmoring.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/LICENSE -------------------------------------------------------------------------------- /PhpCacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/PhpCacheItem.php -------------------------------------------------------------------------------- /PhpCachePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/PhpCachePool.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/README.md -------------------------------------------------------------------------------- /TagSupportWithArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/TagSupportWithArray.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-cache/adapter-common/HEAD/composer.json --------------------------------------------------------------------------------