├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── health.php ├── database ├── factories │ └── HealthCheckResultHistoryItemFactory.php └── migrations │ └── create_health_tables.php.stub ├── package.json ├── phpstan-baseline.neon ├── phpstan.neon.dist ├── postcss.config.js ├── resources ├── css │ └── health.css ├── dist │ └── health.min.css ├── lang │ ├── ar │ │ └── notifications.php │ ├── bg │ │ └── notifications.php │ ├── bn │ │ └── notifications.php │ ├── cz │ │ └── notifications.php │ ├── da │ │ └── notifications.php │ ├── de │ │ └── notifications.php │ ├── en │ │ └── notifications.php │ ├── es │ │ └── notifications.php │ ├── fa │ │ └── notifications.php │ ├── fr │ │ └── notifications.php │ ├── hi │ │ └── notifications.php │ ├── it │ │ └── notifications.php │ ├── lv │ │ └── notifications.php │ ├── nl │ │ └── notifications.php │ ├── pt │ │ └── notifications.php │ ├── pt_BR │ │ └── notifications.php │ ├── ru │ │ └── notifications.php │ ├── sk │ │ └── notifications.php │ └── tr │ │ └── notifications.php └── views │ ├── list-cli.blade.php │ ├── list.blade.php │ ├── logo.blade.php │ ├── mail │ └── checkFailedNotification.blade.php │ └── status-indicator.blade.php ├── src ├── Checks │ ├── Check.php │ ├── Checks │ │ ├── BackupsCheck.php │ │ ├── CacheCheck.php │ │ ├── DatabaseCheck.php │ │ ├── DatabaseConnectionCountCheck.php │ │ ├── DatabaseSizeCheck.php │ │ ├── DatabaseTableSizeCheck.php │ │ ├── DebugModeCheck.php │ │ ├── EnvironmentCheck.php │ │ ├── FlareErrorOccurrenceCountCheck.php │ │ ├── HorizonCheck.php │ │ ├── MeilisearchCheck.php │ │ ├── OptimizedAppCheck.php │ │ ├── PingCheck.php │ │ ├── QueueCheck.php │ │ ├── RedisCheck.php │ │ ├── RedisMemoryUsageCheck.php │ │ ├── ScheduleCheck.php │ │ └── UsedDiskSpaceCheck.php │ └── Result.php ├── Commands │ ├── DispatchQueueCheckJobsCommand.php │ ├── ListHealthChecksCommand.php │ ├── PauseHealthChecksCommand.php │ ├── ResumeHealthChecksCommand.php │ ├── RunHealthChecksCommand.php │ └── ScheduleCheckHeartbeatCommand.php ├── Components │ ├── Logo.php │ └── StatusIndicator.php ├── Enums │ └── Status.php ├── Events │ ├── CheckEndedEvent.php │ └── CheckStartingEvent.php ├── Exceptions │ ├── CheckDidNotComplete.php │ ├── CouldNotSaveResultsInStore.php │ ├── DatabaseNotSupported.php │ ├── DuplicateCheckNamesFound.php │ └── InvalidCheck.php ├── Facades │ └── Health.php ├── Health.php ├── HealthServiceProvider.php ├── Http │ ├── Controllers │ │ ├── HealthCheckJsonResultsController.php │ │ ├── HealthCheckResultsController.php │ │ └── SimpleHealthCheckController.php │ └── Middleware │ │ ├── HealthMiddleware.php │ │ ├── RequiresSecret.php │ │ └── RequiresSecretToken.php ├── Jobs │ └── HealthQueueJob.php ├── Models │ └── HealthCheckResultHistoryItem.php ├── Notifications │ ├── CheckFailedNotification.php │ └── Notifiable.php ├── ResultStores │ ├── CacheHealthResultStore.php │ ├── EloquentHealthResultStore.php │ ├── InMemoryHealthResultStore.php │ ├── JsonFileHealthResultStore.php │ ├── ResultStore.php │ ├── ResultStores.php │ └── StoredCheckResults │ │ ├── StoredCheckResult.php │ │ └── StoredCheckResults.php ├── Support │ ├── BackupFile.php │ ├── Checks.php │ ├── DbConnectionInfo.php │ └── Run.php ├── Testing │ ├── FakeCheck.php │ ├── FakeHealth.php │ └── FakeValues.php └── Traits │ ├── HasDatabaseConnection.php │ └── Pingable.php ├── tailwind.config.js └── yarn.lock /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/composer.json -------------------------------------------------------------------------------- /config/health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/config/health.php -------------------------------------------------------------------------------- /database/factories/HealthCheckResultHistoryItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/database/factories/HealthCheckResultHistoryItemFactory.php -------------------------------------------------------------------------------- /database/migrations/create_health_tables.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/database/migrations/create_health_tables.php.stub -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/package.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resources/css/health.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/css/health.css -------------------------------------------------------------------------------- /resources/dist/health.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/dist/health.min.css -------------------------------------------------------------------------------- /resources/lang/ar/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/ar/notifications.php -------------------------------------------------------------------------------- /resources/lang/bg/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/bg/notifications.php -------------------------------------------------------------------------------- /resources/lang/bn/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/bn/notifications.php -------------------------------------------------------------------------------- /resources/lang/cz/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/cz/notifications.php -------------------------------------------------------------------------------- /resources/lang/da/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/da/notifications.php -------------------------------------------------------------------------------- /resources/lang/de/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/de/notifications.php -------------------------------------------------------------------------------- /resources/lang/en/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/en/notifications.php -------------------------------------------------------------------------------- /resources/lang/es/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/es/notifications.php -------------------------------------------------------------------------------- /resources/lang/fa/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/fa/notifications.php -------------------------------------------------------------------------------- /resources/lang/fr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/fr/notifications.php -------------------------------------------------------------------------------- /resources/lang/hi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/hi/notifications.php -------------------------------------------------------------------------------- /resources/lang/it/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/it/notifications.php -------------------------------------------------------------------------------- /resources/lang/lv/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/lv/notifications.php -------------------------------------------------------------------------------- /resources/lang/nl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/nl/notifications.php -------------------------------------------------------------------------------- /resources/lang/pt/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/pt/notifications.php -------------------------------------------------------------------------------- /resources/lang/pt_BR/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/pt_BR/notifications.php -------------------------------------------------------------------------------- /resources/lang/ru/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/ru/notifications.php -------------------------------------------------------------------------------- /resources/lang/sk/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/sk/notifications.php -------------------------------------------------------------------------------- /resources/lang/tr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/lang/tr/notifications.php -------------------------------------------------------------------------------- /resources/views/list-cli.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/views/list-cli.blade.php -------------------------------------------------------------------------------- /resources/views/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/views/list.blade.php -------------------------------------------------------------------------------- /resources/views/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/views/logo.blade.php -------------------------------------------------------------------------------- /resources/views/mail/checkFailedNotification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/views/mail/checkFailedNotification.blade.php -------------------------------------------------------------------------------- /resources/views/status-indicator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/resources/views/status-indicator.blade.php -------------------------------------------------------------------------------- /src/Checks/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Check.php -------------------------------------------------------------------------------- /src/Checks/Checks/BackupsCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/BackupsCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/CacheCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/CacheCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/DatabaseCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/DatabaseCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/DatabaseConnectionCountCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/DatabaseConnectionCountCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/DatabaseSizeCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/DatabaseSizeCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/DatabaseTableSizeCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/DatabaseTableSizeCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/DebugModeCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/DebugModeCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/EnvironmentCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/EnvironmentCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/FlareErrorOccurrenceCountCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/FlareErrorOccurrenceCountCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/HorizonCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/HorizonCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/MeilisearchCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/MeilisearchCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/OptimizedAppCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/OptimizedAppCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/PingCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/PingCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/QueueCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/QueueCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/RedisCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/RedisCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/RedisMemoryUsageCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/RedisMemoryUsageCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/ScheduleCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/ScheduleCheck.php -------------------------------------------------------------------------------- /src/Checks/Checks/UsedDiskSpaceCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Checks/UsedDiskSpaceCheck.php -------------------------------------------------------------------------------- /src/Checks/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Checks/Result.php -------------------------------------------------------------------------------- /src/Commands/DispatchQueueCheckJobsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Commands/DispatchQueueCheckJobsCommand.php -------------------------------------------------------------------------------- /src/Commands/ListHealthChecksCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Commands/ListHealthChecksCommand.php -------------------------------------------------------------------------------- /src/Commands/PauseHealthChecksCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Commands/PauseHealthChecksCommand.php -------------------------------------------------------------------------------- /src/Commands/ResumeHealthChecksCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Commands/ResumeHealthChecksCommand.php -------------------------------------------------------------------------------- /src/Commands/RunHealthChecksCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Commands/RunHealthChecksCommand.php -------------------------------------------------------------------------------- /src/Commands/ScheduleCheckHeartbeatCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Commands/ScheduleCheckHeartbeatCommand.php -------------------------------------------------------------------------------- /src/Components/Logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Components/Logo.php -------------------------------------------------------------------------------- /src/Components/StatusIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Components/StatusIndicator.php -------------------------------------------------------------------------------- /src/Enums/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Enums/Status.php -------------------------------------------------------------------------------- /src/Events/CheckEndedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Events/CheckEndedEvent.php -------------------------------------------------------------------------------- /src/Events/CheckStartingEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Events/CheckStartingEvent.php -------------------------------------------------------------------------------- /src/Exceptions/CheckDidNotComplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Exceptions/CheckDidNotComplete.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSaveResultsInStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Exceptions/CouldNotSaveResultsInStore.php -------------------------------------------------------------------------------- /src/Exceptions/DatabaseNotSupported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Exceptions/DatabaseNotSupported.php -------------------------------------------------------------------------------- /src/Exceptions/DuplicateCheckNamesFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Exceptions/DuplicateCheckNamesFound.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Exceptions/InvalidCheck.php -------------------------------------------------------------------------------- /src/Facades/Health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Facades/Health.php -------------------------------------------------------------------------------- /src/Health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Health.php -------------------------------------------------------------------------------- /src/HealthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/HealthServiceProvider.php -------------------------------------------------------------------------------- /src/Http/Controllers/HealthCheckJsonResultsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Http/Controllers/HealthCheckJsonResultsController.php -------------------------------------------------------------------------------- /src/Http/Controllers/HealthCheckResultsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Http/Controllers/HealthCheckResultsController.php -------------------------------------------------------------------------------- /src/Http/Controllers/SimpleHealthCheckController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Http/Controllers/SimpleHealthCheckController.php -------------------------------------------------------------------------------- /src/Http/Middleware/HealthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Http/Middleware/HealthMiddleware.php -------------------------------------------------------------------------------- /src/Http/Middleware/RequiresSecret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Http/Middleware/RequiresSecret.php -------------------------------------------------------------------------------- /src/Http/Middleware/RequiresSecretToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Http/Middleware/RequiresSecretToken.php -------------------------------------------------------------------------------- /src/Jobs/HealthQueueJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Jobs/HealthQueueJob.php -------------------------------------------------------------------------------- /src/Models/HealthCheckResultHistoryItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Models/HealthCheckResultHistoryItem.php -------------------------------------------------------------------------------- /src/Notifications/CheckFailedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Notifications/CheckFailedNotification.php -------------------------------------------------------------------------------- /src/Notifications/Notifiable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Notifications/Notifiable.php -------------------------------------------------------------------------------- /src/ResultStores/CacheHealthResultStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/CacheHealthResultStore.php -------------------------------------------------------------------------------- /src/ResultStores/EloquentHealthResultStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/EloquentHealthResultStore.php -------------------------------------------------------------------------------- /src/ResultStores/InMemoryHealthResultStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/InMemoryHealthResultStore.php -------------------------------------------------------------------------------- /src/ResultStores/JsonFileHealthResultStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/JsonFileHealthResultStore.php -------------------------------------------------------------------------------- /src/ResultStores/ResultStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/ResultStore.php -------------------------------------------------------------------------------- /src/ResultStores/ResultStores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/ResultStores.php -------------------------------------------------------------------------------- /src/ResultStores/StoredCheckResults/StoredCheckResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/StoredCheckResults/StoredCheckResult.php -------------------------------------------------------------------------------- /src/ResultStores/StoredCheckResults/StoredCheckResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/ResultStores/StoredCheckResults/StoredCheckResults.php -------------------------------------------------------------------------------- /src/Support/BackupFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Support/BackupFile.php -------------------------------------------------------------------------------- /src/Support/Checks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Support/Checks.php -------------------------------------------------------------------------------- /src/Support/DbConnectionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-health/HEAD/src/Support/DbConnectionInfo.php -------------------------------------------------------------------------------- /src/Support/Run.php: -------------------------------------------------------------------------------- 1 |