cronradar/laravel 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cronradar/laravel

最新稳定版本:0.0.8

Composer 安装命令:

composer require cronradar/laravel

包简介

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

README 文档

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

统计信息

  • 总下载量: 5
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2025-10-02