larakek/health-check

Health checks for laravel application

v1.1.0 2025-06-17 13:14 UTC

This package is auto-updated.

Last update: 2025-06-17 13:49:52 UTC


README

Build Status Latest Stable Version License

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"

Configuration

Usage