php-debugbar icon indicating copy to clipboard operation
php-debugbar copied to clipboard

Debug bar for PHP

Results 167 php-debugbar issues
Sort by recently updated
recently updated
newest added

Issue is that we have other elements that have fixed positions at the bottom, so we either show them on top of debugbar (not nice looking) or we may miss...

Just a really small thing i've noticed in your composer.json: `kriswallsmith/assetic` is not maintained anymore. The new package should be `assetic/framework` from https://github.com/assetic-php/assetic https://github.com/maximebf/php-debugbar/blob/c2e310320b7751a959f1590bb76530abbcfd2ce6/composer.json#L34 Keep up the great work. It...

Update to use Twig\Extension\ProfilerExtension instead of Twig_Extension_Profiler and \Twig\Profiler\Dumper\HtmlDumper instead of Twig_Profiler_Dumper_Html

``` Whoops\Exception\ErrorException thrown with message "Declaration of DebugBar\DataCollector\PDO\TraceablePDO::query($statement) must be compatible with PDO::query(string $query, ?int $fetchMode = null, mixed ...$fetchModeArgs)" Stacktrace: #2 Whoops\Exception\ErrorException in C:\***\vendor\maximebf\debugbar\src\DebugBar\DataCollector\PDO\TraceablePDO.php:146 #1 Whoops\Run:handleError in C:\***\vendor\filp\whoops\src\Whoops\Run.php:408 #0...

An upgrade to v3.5.1 could be fixed. CVSS 3 Score: 6.1 Medium https://nvd.nist.gov/vuln/detail/CVE-2019-11358 CVSS 3 Score: 6.1 Medium https://nvd.nist.gov/vuln/detail/CVE-2020-11022

it took me hours to figure out what I have been doing wrong.. // Require the Composer autoloader, if not already loaded require 'vendor/autoload.php'; is missing on the example code...

When viewing messages with var_dumps, I often want to copy the message to clipboard, but the message collapse when clicking, so that makes it hard to select the data. What...

v2

**Background** I'm working in my spare time, on a Pet Project, on a Zend Extension, which gives me the execution stack directly from the PHP VM. Just playing, so I...

When using var-dumper first inside a debugbar collector then outside, it breaks the outside instance (clicking on an object or array does not collapse it). That's because `DebugBarHtmlDumper::getDumpHeaderByDebugBar()` replaces some...

public function get(){ $debugbar = new StandardDebugBar(); $debugbar->addCollector(new ExceptionsCollector()); try { throw new \Exception('foobar'); } catch ( \Exception $e ) { $debugbar['exceptions']->addException($e); } } I have this function and i...