cronradar/laravel

Monitor Laravel scheduled tasks with selective or MonitorAll modes. Auto-discovers keys and schedules.

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/cronradar/laravel

0.0.8 2025-11-08 19:14 UTC

This package is auto-updated.

Last update: 2025-12-09 13:56:30 UTC


README

Monitor Laravel scheduled tasks automatically. Monitors all tasks by default - use ->skipMonitor() to opt-out.

Installation

composer require cronradar/laravel

Quick Start

All tasks are monitored automatically:

// In routes/console.php or bootstrap/app.php
use Illuminate\Support\Facades\Schedule;

Schedule::command('emails:send')->hourly();
// Monitored automatically

Schedule::command('reports:generate')->daily();
// Monitored automatically

Schedule::command('internal:cleanup')
    ->daily()
    ->skipMonitor();  // Opt-out

Configuration

Add to .env:

CRONRADAR_API_KEY=ck_app_xxxxx_yyyyy

Custom Monitor Keys

$schedule->command('reports:generate')
    ->daily()
    ->monitor('custom-report-key');  // Optional custom key

If no key provided, auto-detects from command name.

Requirements

  • PHP 8.1+
  • Laravel 10.x, 11.x, or 12.x

Links

See also: CronRadar PHP SDK

License

© 2025 CronRadar - See LICENSE