### Registering the Security Advisories Health Check Source: https://github.com/spatie/security-advisories-health-check/blob/main/README.md This snippet shows how to register the SecurityAdvisoriesCheck within your Laravel application's health checks. It demonstrates the typical placement within a service provider and includes the necessary namespace imports. The `retryTimes(5)` method is an example of configuring the check. ```php use Spatie\Health\Facades\Health; use Spatie\SecurityAdvisoriesHealthCheck\SecurityAdvisoriesCheck; Health::checks([ SecurityAdvisoriesCheck::new()->retryTimes(5), ]); ``` -------------------------------- ### Running Tests Source: https://github.com/spatie/security-advisories-health-check/blob/main/README.md This command executes the test suite for the security-advisories-health-check package using Composer. It's a standard command for verifying the package's functionality and ensuring no regressions have been introduced. ```bash composer test ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.