Official Plugins + Applications

PHP - Task Scheduler (Cron)

PHP 8.2+ Cron scheduler with fluent API

composer require wolfcode/php-cron

JSON Viewer - Browser JSON Formatting Extension

A beautiful JSON formatter for Chrome

Code Screenshot - IDE Code to Image

Take a screenshot of the current code as an image

gocron - Central Task Scheduling + Cron Management System

A lightweight centralized cron job scheduling and management system developed in Go, used as a replacement for Linux-crontab

PHP - Framework Log Viewer

composer require wolf-leo/phplogviewer

PHP - Common Authenticator

composer require wolfcode/authenticator

PHP - Qiniu Cloud Upload

Because the official SDK does not support PHP 8.4+
composer require wolfcode/qiniu-php-sdk

layui - switchSelect

layui.config({
    base: '../switchSelect/' // Modify path according to actual situation
}).extend({
    switchSelect: 'switchSelect',
});

layui.use(['switchSelect'], function () {
    let switchSelect = layui.switchSelect;

    // Initialize component
    new switchSelect({
        elem: '#switchSelectDemo',                  // Container element
        data: {1: 'AAA', 2: 'BBB', 3: 'CCC'},       // Data
        default: 1,                                 // Default selected item
        name: 'name',                               // Form name
        target: 'radio',                            // Default style radio select
        onSwitch: function (target) {
            console.log('Switched to:', target);
        }
    });
});