定制 dongww/silex-debugbar 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

dongww/silex-debugbar

最新稳定版本:v0.4.0

Composer 安装命令:

composer require dongww/silex-debugbar

包简介

php-debugbar provider for silex.

README 文档

README

php-debugbar provider for Silex 2.*.

debugBar

##Install

composer require dongww/silex-debugbar *

##Usage

$app->register(new Dongww\Silex\Provider\DebugBarServiceProvider());

The JS and CSS files will be loaded from vendor directory automatically.

If vendor directory or debugBar's Resources directory already exists in the web public directory, you can set option 'debug_bar.auto_res' to false, and set option 'debug_bar.path' to resources directory. This will speed up the loading speed.

$app->register(new Dongww\Silex\Provider\DebugBarServiceProvider(), [
    'debug_bar.auto_res' => false, //Optional, default is true
    'debug_bar.path' => '/debugbar', //Optional, default is null.
]);

##Example

<?php
use Silex\Application;
use Dongww\Silex\Provider\DebugBarServiceProvider;

require_once __DIR__ . '/../vendor/autoload.php';

$app          = new Application();
$app['debug'] = true;

if ($app['debug']) {
    $app->register(new DebugBarServiceProvider(), [
//        'debug_bar.auto_res' => false, //Optional, default is true
//        'debug_bar.path'      => '/debugbar', //Optional, default is null.
    ]);
}

$app->get('/', function (Application $app) {
    $app['debug_bar']['messages']->addMessage("Hello DebugBar!");
    $app['debug_bar']['messages']->addMessage([
        'a' => 1,
        'b' => 2,
        'c' => 3,
    ]);

    return '<body><h1>This is an example for silex_debugbar provider.</h1></body>';
});

$app->run();

##Doctrine DBAL logs

If you use Doctrine Provider, sql logs will be automatically captured and displayed in debugBar.

统计信息

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

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-09-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固