lloricode / spatie-image-optimizer-health-check
These checks are where you can check if optimizer is installed on your server.
Fund package maintenance!
Patreon
www.paypal.com/donate?hosted_button_id=V8PYXUNG6QP44
Installs: 11 811
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- illuminate/contracts: ^10.0|^11.0
- spatie/laravel-health: ^1.19
- spatie/laravel-package-tools: ^1.12.1
Requires (Dev)
- larastan/larastan: ^2.9.2
- laravel/pint: ^1.14.0
- orchestra/testbench: ^8.0|^9.0
- pestphp/pest: ^2.34.1
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- phpstan/extension-installer: ^1.3.1
- phpstan/phpstan-deprecation-rules: ^1.1.4
- phpstan/phpstan-phpunit: ^1.3.16
- spatie/laravel-ray: ^1.35.1
README
When using laravel-medialibrary it uses image-optimizer under the hood, and probably this would not work if optimizer tools is not installed on you server. These checks are where you can check if optimizer is installed on your server.
Installation
You can install the package via composer:
composer require lloricode/spatie-image-optimizer-health-check
Usage
use Lloricode\SpatieImageOptimizerHealthCheck\ImageOptimizerCheck; use Spatie\Health\Facades\Health; # all optimizer Health::checks([ ImageOptimizerCheck::new(), ]); # specific optimizer use Lloricode\SpatieImageOptimizerHealthCheck\Optimizer; Health::checks([ ImageOptimizerCheck::new() ->addChecks(Optimizer::JPEGOPTIM), ]); # multiple Health::checks([ ImageOptimizerCheck::new() ->addChecks([ Optimizer::JPEGOPTIM, Optimizer::OPTIPNG, Optimizer::PNGQUANT, Optimizer::SVGO, Optimizer::GIFSICLE, Optimizer::WEBP, ]), ]);
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.