This package contains a Laravel Health File Size Monitoring: Identify files that exceed specified size limits to prevent unexpected storage overages.
You can install the package via composer:
composer require prakort/laravel-wellness
use Spatie\Health\Facades\Health;
use prakort\LaravelWellness\FileSizeCheck;
Health::checks([
FileSizeCheck::new()
->disk('s3')
->warningThreshold(5)
->errorThreshold(10)
->fileTypes(['png', 'pdf', 'txt'])
]);
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.