larakek / health-check
Health checks for laravel application
v1.1.0
2025-06-17 13:14 UTC
Requires
- php: ^8.2|^8.3
- illuminate/console: ^10.0|^11.0
- illuminate/contracts: ^10.0|^11.0
- illuminate/support: ^10.0|^11.0
Requires (Dev)
- laravel/pint: ^1.18
- orchestra/testbench: ^8.0|^9.0
- phpstan/phpstan: ^1.12
- phpunit/phpunit: ^9.3|^10.4|^11.0
This package is auto-updated.
Last update: 2025-06-17 13:49:52 UTC
README
Introduction
Health Check is a package for the Laravel application that allows you to understand if your application is unhealthy. The package can handle http probes and command probes.
Installation
Require this package with composer.
composer require larakek/health-check
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Laravel without auto-discovery:
If you don't use auto-discovery, add the ServiceProvider to the providers list. For Laravel 11 or newer, add the ServiceProvider in bootstrap/providers.php. For Laravel 10 or older, add the ServiceProvider in config/app.php.
Larakek\HealthCheck\HealthCheckServiceProvider
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Larakek\HealthCheck\HealthCheckServiceProvider"