公式プラグイン + アプリケーション

PHP - タスクスケジューラ(タイマー)

PHP 8.2+ Cron scheduler with fluent API

composer require wolfcode/php-cron

JSON Viewer - ブラウザJSONフォーマット拡張

A beautiful JSON formatter for Chrome

Code Screenshot - IDE コードから画像生成

Take a screenshot of the current code as an image

gocron - 統合タスクスケジューラ + 定期タスク管理システム

Go言語で開発された軽量な定期タスク集中スケジューリング・管理システム、Linux-crontabの代替として

PHP - フレームワークログビューア

composer require wolf-leo/phplogviewer

PHP - 汎用認証器

composer require wolfcode/authenticator

PHP - 七牛雲アップロード

公式が PHP 8.4+ に対応していないため
composer require wolfcode/qiniu-php-sdk

layui - switchSelect

layui.config({
    base: '../switchSelect/' // 実際の状況に応じてパスを変更
}).extend({
    switchSelect: 'switchSelect',
});

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

    // コンポーネントの初期化
    new switchSelect({
        elem: '#switchSelectDemo',                  // コンテナ要素
        data: {1: 'AAA', 2: 'BBB', 3: 'CCC'},       // データ
        default: 1,                                 // デフォルト選択項目
        name: 'name',                               // フォームname
        target: 'radio',                            // デフォルトスタイル radio select
        onSwitch: function (target) {
            console.log('切り替え先:', target);
        }
    });
});