flamix / health
Check Health
Installs: 660
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/flamix/health
Requires
- spatie/laravel-health: ^1.22
This package is auto-updated.
Last update: 2025-09-15 12:41:55 UTC
README
Install
# add to config/health.php 'checks' => [ \Flamix\Health\Checks\MemcachedCheck::class, \Flamix\Health\Checks\SSLExpireCheck::class => [ 'name' => 'HelpDesk Ssl', 'domain' => 'http://b24.flamix.info/', ], \Spatie\Health\Checks\Checks\PingCheck::class => [ [ 'name' => 'HelpDesk', 'url' => 'https://cp.flamix.solutions', ], [ 'name' => 'Main Site', 'url' => 'https://en.flamix.solutions/status.php', ], ], ] # Run php artisan health:check # Add to Cron \Flamix\Health\Controllers\HealthController::schedule($schedule);