A Laravel Health check to SSL certification
victord11/ssl-certification-health-check is a Laravel package for a laravel health check to ssl certification.
It currently has 17 GitHub stars and 156.343 downloads on Packagist (latest version 1.0.5).
Install it with composer require victord11/ssl-certification-health-check.
Discover more Laravel packages by victord11
or browse all Laravel packages to compare alternatives.
Last updated
This package contains a Laravel Health check that ssl certification valid and soon expired. It can send you a notification when SSL Certification is InValid and Certification soon expiration.
// typically, in a service provider
use Spatie\Health\Facades\Health;
use VictoRD11\SslCertificationHealthCheck\SslCertificationExpiredCheck;
use VictoRD11\SslCertificationHealthCheck\SslCertificationValidCheck;
Health::checks([
SslCertificationExpiredCheck::new()->url('google.com')->warnWhenSslCertificationExpiringDay(15)->failWhenSslCertificationExpiringDay(10),
SslCertificationValidCheck::new()->url('google.com'),
]);
The documentation of this package is available inside the docs of Laravel Health.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.