yii2-extensions/worker-debug 问题修复 & 功能扩展

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

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

yii2-extensions/worker-debug

最新稳定版本:0.1.1

Composer 安装命令:

composer require yii2-extensions/worker-debug

包简介

Debug toolbar for extension PSR Bridge.

README 文档

README

Yii Framework

Debug toolbar for the Yii2 PSR Bridge extension.


PHP version Yii 2.0.x Yii 22.0.x PHPUnit Mutation Testing PHPStan

A specialized debug toolbar extension that provides enhanced debugging capabilities for Yii2 applications using the PSR Bridge, offering comprehensive insights into application execution, performance metrics, and component interactions.

Features

Enhanced Debug Toolbar

  • Real-time performance monitoring and metrics collection.

System requirements

  • PHP 8.1 or higher.
  • Composer for dependency management.
  • Yii2 2.0.53+ or 22.x.

Installation

Method 1: Using Composer (recommended)

Install the extension.

composer require yii2-extensions/worker-debug:^0.1

Method 2: Manual installation

Add to your composer.json.

{
    "require": {
        "yii2-extensions/worker-debug": "^0.1"
    }
}

Then run.

composer update

Quick start

Add the following code to your configuration file (web.php).

<?php

declare(strict_types=1);

use yii2\extensions\debug\WorkerDebugModule;

if (YII_ENV_DEV) {
    // configuration adjustments for 'dev' environment
    $config['bootstrap'][] = 'debug';
    $config['modules']['debug'] = [
        'class' => WorkerDebugModule::class,
        // uncomment the following to add your IP if you are not connecting from localhost.
        //'allowedIPs' => ['127.0.0.1', '::1'],
    ];
}

Documentation

For testing guidance, see.

Package information

Latest Stable Version Total Downloads

Quality code

codecov phpstan-level StyleCI

Our social networks

Follow on X

License

License

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2025-08-16