├── LICENSE.md ├── SECURITY.md ├── art └── cache-ui-laravel.png ├── composer.json ├── config └── cache-ui-laravel.php ├── phpunit.xml ├── pint.json └── src ├── CacheUiLaravel.php ├── CacheUiLaravelServiceProvider.php ├── Commands └── CacheUiLaravelCommand.php ├── Facades └── CacheUiLaravel.php └── KeyAwareFileStore.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | Just open a new issue :D 4 | -------------------------------------------------------------------------------- /art/cache-ui-laravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/art/cache-ui-laravel.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/cache-ui-laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/config/cache-ui-laravel.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/pint.json -------------------------------------------------------------------------------- /src/CacheUiLaravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/src/CacheUiLaravel.php -------------------------------------------------------------------------------- /src/CacheUiLaravelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/src/CacheUiLaravelServiceProvider.php -------------------------------------------------------------------------------- /src/Commands/CacheUiLaravelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/src/Commands/CacheUiLaravelCommand.php -------------------------------------------------------------------------------- /src/Facades/CacheUiLaravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/src/Facades/CacheUiLaravel.php -------------------------------------------------------------------------------- /src/KeyAwareFileStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abr4xas/cache-ui-laravel/HEAD/src/KeyAwareFileStore.php --------------------------------------------------------------------------------