PHPackages                             bowero/laravel-healthchecks - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. bowero/laravel-healthchecks

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

bowero/laravel-healthchecks
===========================

A Laravel wrapper for healthchecks.io

v1.0.0(4y ago)6741[3 PRs](https://github.com/Bowero/laravel-healthchecks.io/pulls)MITPHPPHP ^8.0

Since Mar 9Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Bowero/laravel-healthchecks.io)[ Packagist](https://packagist.org/packages/bowero/laravel-healthchecks)[ Docs](https://github.com/bowero/laravel-healthchecks)[ GitHub Sponsors](https://github.com/Bowero)[ RSS](/packages/bowero-laravel-healthchecks/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (1)Dependencies (12)Versions (5)Used By (0)

A Laravel wrapper for healthchecks.io
=====================================

[](#a-laravel-wrapper-for-healthchecksio)

[![Latest Version on Packagist](https://camo.githubusercontent.com/41bc444853652a2aeb605611403ac76f809ec5bd1636d86250ceaffc25e40091/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f626f7765726f2f6c61726176656c2d6865616c7468636865636b732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bowero/laravel-healthchecks)[![GitHub Tests Action Status](https://camo.githubusercontent.com/717089e0e23b2b31cc1481c7cdea1ae7e067d97187a09aa52ea634ac0152bbb0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f626f7765726f2f6c61726176656c2d6865616c7468636865636b732e696f2f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/bowero/laravel-healthchecks/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/fa67611af261c3e6e808ff1f0f8c7df6261e0915f9991d1700f7a0f981f06b55/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f626f7765726f2f6c61726176656c2d6865616c7468636865636b732e696f2f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/bowero/laravel-healthchecks/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/dd9b924bbedd4856b139cdd0ac43323dd48e5ce3eb5ca4685f5dcd77b77597cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f626f7765726f2f6c61726176656c2d6865616c7468636865636b732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bowero/laravel-healthchecks)

[Healthchecks.io](https://healthchecks.io) is a service that monitors your cron jobs and alerts you when they are down. This package is a wrapper for the Healthchecks.io API.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require bowero/laravel-healthchecks
```

You then need to publish the configuration file:

```
php artisan vendor:publish --tag="laravel-healthchecks-config"
```

This is the contents of the published config file:

```
return [

    /*
     * The URL endpoint of healthchecks.io
     */
    'url' => 'https://hc-ping.com/',

    /*
     * Your registered jobs
     */
    'jobs' => [
        'my-first-check' => [
            'uuid' => 'c2c0be0a-94fa-4128-aa8a-cd55889cdb29',
        ],
    ],
];
```

That's it! you can now use the package in your Laravel application. It is automatically registered in your service provider.

Usage
-----

[](#usage)

```
use Bowero\Healthchecks\Facades\Healthchecks;

/*
 * Create a job
 * (the job is registered in healthchecks.php)
 */
$job = Healthchecks::job('my-first-check');

/*
 * Create a job based on the uuid
 */
$job = Healthchecks::uuid('c2c0be0a-94fa-4128-aa8a-cd55889cdb29');

/*
 * Mark the job as started
 */
$job->start();

/*
 * Mark the job as succesful
 */
$job->success();

/*
 * Mark the job as failed
 */
$job->failure();

/*
 * Mark the job as exited with a status code
 */
$job->exitWithStatus(1);
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Robin Martijn](https://github.com/Bowero)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1570d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/134327546879e99f90ad0bd4be3377b0fcbac157479eafaf1afa10922cc8c9f2?d=identicon)[Bowero](/maintainers/Bowero)

---

Top Contributors

[![Bowero](https://avatars.githubusercontent.com/u/14151691?v=4)](https://github.com/Bowero "Bowero (11 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")

---

Tags

cronjobhealthcheckslaravelBowerolaravel-healthchecks

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/bowero-laravel-healthchecks/health.svg)

```
[![Health](https://phpackages.com/badges/bowero-laravel-healthchecks/health.svg)](https://phpackages.com/packages/bowero-laravel-healthchecks)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.8k33.0M880](/packages/spatie-laravel-data)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.3M42](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

328482.0k25](/packages/codewithdennis-filament-select-tree)[nativephp/desktop

NativePHP for Desktop

38133.6k8](/packages/nativephp-desktop)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

124581.3k](/packages/worksome-exchange)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3913.7k](/packages/rawilk-profile-filament-plugin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
