PHPackages                             ohdearapp/ohdear-pulse - 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. ohdearapp/ohdear-pulse

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

ohdearapp/ohdear-pulse
======================

Integrate Oh Dear with Laravel Pulse

1.1.1(1y ago)26190.0k↓84.1%3[1 issues](https://github.com/ohdearapp/ohdear-pulse/issues)[5 PRs](https://github.com/ohdearapp/ohdear-pulse/pulls)MITBladePHP ^8.1CI passing

Since Dec 13Pushed 1w ago1 watchersCompare

[ Source](https://github.com/ohdearapp/ohdear-pulse)[ Packagist](https://packagist.org/packages/ohdearapp/ohdear-pulse)[ Docs](https://github.com/ohdearapp/ohdear-pulse)[ RSS](/packages/ohdearapp-ohdear-pulse/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (6)Dependencies (11)Versions (13)Used By (0)

Integrate Oh Dear with Laravel Pulse
====================================

[](#integrate-oh-dear-with-laravel-pulse)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7911db1d76fd095526c918574429d81682fa9bb224123ffb7698d274230f3cd9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f68646561726170702f6f68646561722d70756c73652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ohdearapp/ohdear-pulse)[![GitHub Tests Action Status](https://camo.githubusercontent.com/87501c3c2d6ac7879db69227088e15fe6f474febcc8b4188604197c1d7cd515a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6f68646561726170702f6f68646561722d70756c73652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/ohdearapp/ohdear-pulse/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/feb4e3e499d7e3f7647f6b17788caa7c93d5cb04d1ba4bdab212a5505b8c7931/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6f68646561726170702f6f68646561722d70756c73652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/ohdearapp/ohdear-pulse/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/c67904b726cb9daf4e22bba3b4dd762b9e3841d9ecb28f4223e64b34d88dc486/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f68646561726170702f6f68646561722d70756c73652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ohdearapp/ohdear-pulse)

This package contains Pulse cards that show results from [Oh Dear](https://ohdear.app) in your [Laravel Pulse](https://pulse.laravel.com) dashboard.

Currently, there are three cards available:

- [Uptime and Performance](https://ohdear.app/docs/features/uptime-monitoring)

[![](https://github.com/ohdearapp/ohdear-pulse/raw/main/docs/uptime.jpg?raw=true)](https://github.com/ohdearapp/ohdear-pulse/blob/main/docs/uptime.jpg?raw=true)

- [Cron Job Monitoring](https://ohdear.app/docs/features/cron-job-monitoring)

[![screenshot](https://github.com/ohdearapp/ohdear-pulse/raw/main/docs/cron.jpg?raw=true)](https://github.com/ohdearapp/ohdear-pulse/blob/main/docs/cron.jpg?raw=true)

- [Broken links](https://ohdear.app/docs/features/broken-links-detection)

[![screenshot](https://github.com/ohdearapp/ohdear-pulse/raw/main/docs/broken-links.jpg?raw=true)](https://github.com/ohdearapp/ohdear-pulse/blob/main/docs/broken-links.jpg?raw=true)

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

[](#installation)

You can install the package via composer:

```
composer require ohdearapp/ohdear-pulse
```

In your `config/services.php` file, add the following lines:

```
'oh_dear' => [
    'pulse' => [
        'api_key' => env('OH_DEAR_API_TOKEN'),
        'site_id' => env('OH_DEAR_SITE_ID'),
    ],
],
```

You can create an API token on the "API Tokens" page at Oh Dear. You'll find the site ID on the "Settings" page of a site on Oh Dear.

You can execute this artisan command to verify if you set up the configuration correctly.

```
php artisan ohdear-pulse:verify
```

Usage
-----

[](#usage)

There are currently three cards available:

- `ohdear.pulse.uptime`: displays the uptime and performance of a site
- `ohdear.pulse.cron`: displays the results of the cron job monitoring
- `ohdear.pulse.brokenLinks`: displays any broken links that were detected

You can add the cards to your Pulse dashboard, by first publishing the Pulse's dashboard view:

```
php artisan vendor:publish --tag=pulse-dashboard
```

Next, add the cards to the `resources/views/vendor/pulse/dashboard.blade.php` file:

```

    {{-- Add more cards here --}}

```

All these cards accept an optional `site-id` attribute. If you don't provide it, the site ID from the `config/services.php` file will be used.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Freek Van der Herten](https://github.com/freekmurze)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

50

—

FairBetter than 95% of packages

Maintenance72

Regular maintenance activity

Popularity41

Moderate usage in the ecosystem

Community15

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 57.1% of commits — single point of failure

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

Every ~96 days

Recently: every ~143 days

Total

7

Last Release

333d ago

Major Versions

0.0.3 → 1.0.02024-01-07

1.1.1 → v2.x-dev2025-08-03

PHP version history (2 changes)0.0.1PHP ^8.1

v2.x-devPHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/32144649?v=4)[Oh Dear](/maintainers/ohdearapp)[@ohdearapp](https://github.com/ohdearapp)

---

Top Contributors

[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (60 commits)")[![nckrtl](https://avatars.githubusercontent.com/u/18613261?v=4)](https://github.com/nckrtl "nckrtl (21 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (11 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (9 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (2 commits)")[![oddvalue](https://avatars.githubusercontent.com/u/10127404?v=4)](https://github.com/oddvalue "oddvalue (2 commits)")

---

Tags

laravelohdearphppulselaravelohdearappohdear-pulse

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/ohdearapp-ohdear-pulse/health.svg)

```
[![Health](https://phpackages.com/badges/ohdearapp-ohdear-pulse/health.svg)](https://phpackages.com/packages/ohdearapp-ohdear-pulse)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/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.

329530.5k29](/packages/codewithdennis-filament-select-tree)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

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

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[tarfin-labs/event-machine

Event-driven state machines for Laravel with event sourcing, type-safe context, and full audit trail.

199.4k](/packages/tarfin-labs-event-machine)[tapp/filament-form-builder

User facing form builder using Filament components

132.4k3](/packages/tapp-filament-form-builder)

PHPackages © 2026

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