abzudev / laravel-cache-clear
Cache clearing route for Laravel
Requires
- php: >=5.5.9
Requires (Dev)
- orchestra/testbench: ~3.8.0
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2025-03-19 17:12:27 UTC
README
This Laravel package adds a GET/POST route which can be used to clear an application's cache.
Installation
To install this package simply run:
composer require abzudev/laravel-cache-clear
If you are using Laravel 5.5+ then the package will register itself automatically.
Alternatively, you will need to add the CacheClearServiceProvider to the list of providers in app.php.
To check if the package is installed correctly, simply run:
php artisan route:list
and check that the route exists.
Example:
Usage
Once the package has been successfully installed, you can clear your application's cache
by visiting the url https://yourwebsitesurl.com/cc
or doing a POST request to https://yourwebsiteurl.com/cc
.
Below are screenshots of what is expected with each method:
GET:
POST:
Testing
Run the tests with:
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security-related issues, please email jeandrew.swart@gmail.com instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.