downtime-desk/laravel

There is no license information available for the latest version (v1.0.0) of this package.

Report to Downtime Desk monitors directly from your Laravel app.

Maintainers

Package info

github.com/Downtime-Desk/laravel

pkg:composer/downtime-desk/laravel

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-05-13 10:01 UTC

This package is auto-updated.

Last update: 2026-05-13 10:03:02 UTC


README

Quickly add Downtime Desk monitoring to your Laravel application.

Features

  • Composer installable
  • Automatic scheduler registration
  • Manual heartbeat dispatching
  • Multiple named webhooks
  • Queue support
  • Scheduler macros
  • Config-driven
  • Zero-config onboarding

Installation

composer require downtime-desk/laravel

Publish config:

php artisan vendor:publish --tag=downtime-desk-config

Usage

Default Webhook

use DowntimeDesk\Laravel\Facades\DowntimeDesk;

DowntimeDesk::report();

Named Webhook

DowntimeDesk::report('database');

Direct Ping

DowntimeDesk::ping($id, $secret);

Disable Auto Scheduling

DowntimeDesk::disableAutoScheduling();

Manual Scheduler

use Illuminate\Support\Facades\Schedule;

Schedule::DowntimeDesk('default')
    ->everyMinute();

Testing

.vendor/bin/phpunit

or

composer test