arquivei / laravel-health-checker
Laravel Health Checker
Installs: 54 423
Dependents: 2
Suggesters: 0
Security: 0
Stars: 9
Watchers: 13
Forks: 3
Open Issues: 5
pkg:composer/arquivei/laravel-health-checker
Requires
- php: ^8.0 || ^8.1 || ^8.2 || ^8.3
- laravel/framework: ^10.0 || ^11.0
Requires (Dev)
- mockery/mockery: ^1.3.3
- orchestra/testbench: ^8.0 || ^9.0
- predis/predis: ^1.0
Suggests
- guzzlehttp/guzzle: ~6.0
- predis/predis: ^1.0
This package is auto-updated.
Last update: 2025-10-16 20:14:21 UTC
README
Version Compatibility
| Releases | Laravel |
|---|---|
| 1.x | ^5.7 |
| 2.x | ^7.30.3; ^8.22.1 |
| 3.x | ^8.22.1; ^9.3.0 |
| 4.x | ^10.0; ^11.0 |
Install
composer require arquivei/laravel-health-checker
Usage
Edit the config file config/health-checker.php see the comments there for more information
Available checkers
databaseTests database connections.cacheTests for caching datadirectory-permissionTests permission in directoriesqueueTests for queue
How to add a new checker
You only need to extent \Laravel\Health\Checkers\BaseChecker and add to services in config/health-checker.php.
Routes and Responses
To access the health status you can use the follow routes:
health/statusLoad and list all check services.health/{service_name}/statusLoad only the chosen service and show his status.
The response for both cases will be like that:
{
status: {
code: 200,
message: "OK"
},
health_status: [
{
cache: {
is_healthful: true,
message: null
}
},
{
database: {
is_healthful: true,
message: null
}
},
{
directory-permission: {
is_healthful: false,
message: "The directory /application/public/../storage/ is not writable."
}
},
{
queue: {
is_healthful: true,
message: null
}
}
]
}
Command usage
You can use the follow commands to check healthy in your cli application:
php artisan application-health:check-health
Or
php artisan application:health-check
Development
We provide docker images to help set up the development environment. So, in order to build the images, install the dependencies and run the tests, you may execute the command:
make
After the initial setup you can use the bin/php and bin/composer
scripts (wrappers for the docker images) to run the tests and install
new dependencies.