├── .env.bench ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yml ├── phpbench.json ├── phpunit.xml.dist ├── src ├── CacheAdapter.php ├── FileMetadataCache.php ├── FilesystemCacheItem.php └── InvalidCacheItemException.php └── tests ├── Benchmark ├── AbstractFilesystemBenchmark.php ├── AwsBench.php ├── CachedAwsBench.php ├── CachedLocalBench.php ├── CachedTrait.php └── LocalBench.php └── CacheFilesystemTest.php /.env.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/.env.bench -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/phpbench.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/src/CacheAdapter.php -------------------------------------------------------------------------------- /src/FileMetadataCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/src/FileMetadataCache.php -------------------------------------------------------------------------------- /src/FilesystemCacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/src/FilesystemCacheItem.php -------------------------------------------------------------------------------- /src/InvalidCacheItemException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/src/InvalidCacheItemException.php -------------------------------------------------------------------------------- /tests/Benchmark/AbstractFilesystemBenchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/Benchmark/AbstractFilesystemBenchmark.php -------------------------------------------------------------------------------- /tests/Benchmark/AwsBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/Benchmark/AwsBench.php -------------------------------------------------------------------------------- /tests/Benchmark/CachedAwsBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/Benchmark/CachedAwsBench.php -------------------------------------------------------------------------------- /tests/Benchmark/CachedLocalBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/Benchmark/CachedLocalBench.php -------------------------------------------------------------------------------- /tests/Benchmark/CachedTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/Benchmark/CachedTrait.php -------------------------------------------------------------------------------- /tests/Benchmark/LocalBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/Benchmark/LocalBench.php -------------------------------------------------------------------------------- /tests/CacheFilesystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lustmored/flysystem-v2-simple-cache-adapter/HEAD/tests/CacheFilesystemTest.php --------------------------------------------------------------------------------