| Package Data | |
|---|---|
| Maintainer Username: | hedii |
| Maintainer Contact: | contact@hedichaibi.com (hedii) |
| Package Create Date: | 2016-09-08 |
| Package Last Update: | 2025-03-18 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-31 03:00:10 |
| Package Statistics | |
|---|---|
| Total Downloads: | 56,571 |
| Monthly Downloads: | 822 |
| Daily Downloads: | 26 |
| Total Stars: | 41 |
| Total Watchers: | 1 |
| Total Forks: | 14 |
| Total Open Issues: | 0 |
An artisan command to clear laravel log files
Install via composer
composer require hedii/artisan-log-cleaner
Add it to your providers array in config/app.php:
Hedii\ArtisanLogCleaner\ArtisanLogCleanerServiceProvider::class
Run this command to clear all log files in the log directory (storage/logs):
php artisan log:clear
Run this command to clear all log files except the last one in the log directory (storage/logs):
php artisan log:clear --keep-last
Add this to the App\Console\Kernel schedule method to ensure daily cleanup of old log files
$schedule->command('log:clear --keep-last')->daily();
composer test
hedii/artisan-log-cleaner is released under the MIT Licence. See the bundled LICENSE file for details.