├── .github ├── FUNDING.yml └── workflows │ └── php.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── database └── .gitignore ├── src ├── AbstractEvictStrategy.php ├── CacheEvictCommand.php ├── CacheEvictServiceProvider.php ├── CacheEvictStrategies.php ├── Database │ └── DatabaseEvictStrategy.php ├── EvictionRefusedFeatureExistsException.php └── File │ └── FileEvictStrategy.php ├── storage └── framework │ └── cache │ └── data │ └── .gitignore └── test └── CacheEvictStrategiesTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | .idea/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/composer.json -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/database/.gitignore -------------------------------------------------------------------------------- /src/AbstractEvictStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/AbstractEvictStrategy.php -------------------------------------------------------------------------------- /src/CacheEvictCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/CacheEvictCommand.php -------------------------------------------------------------------------------- /src/CacheEvictServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/CacheEvictServiceProvider.php -------------------------------------------------------------------------------- /src/CacheEvictStrategies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/CacheEvictStrategies.php -------------------------------------------------------------------------------- /src/Database/DatabaseEvictStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/Database/DatabaseEvictStrategy.php -------------------------------------------------------------------------------- /src/EvictionRefusedFeatureExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/EvictionRefusedFeatureExistsException.php -------------------------------------------------------------------------------- /src/File/FileEvictStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/src/File/FileEvictStrategy.php -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | # empty directory for easily "mocking" the file cache 2 | */ 3 | -------------------------------------------------------------------------------- /test/CacheEvictStrategiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/laravel-cache-evict/HEAD/test/CacheEvictStrategiesTest.php --------------------------------------------------------------------------------