kint
kint copied to clipboard
Kint - a powerful and modern PHP debugging tool.
I suggest adding in Kint the ability to know the current version. Now Kint itself does not store the version number anywhere and you can find it only by looking...
There are several formats that identify callable vars. Most ancient are traditional PHP callbacks such as `[Kint\Kint::class, 'dump']`, `[$object, 'method']` and function names, then there's the `Kint\Kint::dump` format, plus Closures...
I often work with similar objects and var_dump with xdebug has the neat feature of outputting the spl_object_id which makes it easy to find out if two outputs belong to...
It would be very helpful if there would be a copy-to-clipboard button (icon), especially for the "Show access path" textbox. Nowadays the document.execCommand('copy') function is widely supported, so this shouldn't...
is it possible to have a configuration which uses `xdebug_get_function_stack` instead of `debug_backtrace` ? https://github.com/kint-php/kint/blob/b091715eadaf6e1a7ef927f3e81d1004611d2aea/src/Kint.php#L192 Its useful if you want to print trace inside fatal errors. easy to see stack...
In FsPathPlugin, in the parse() method, when a null byte exists in the passed in parameter, file_exists throws an exception. If you replace NULL characters the exception is prevented ...
Hi, While working on a project and validating the HTML code of the page with [the W3C Markup Validation Service](https://validator.w3.org/#validate_by_input), I noticed that the Kint library had some HTML errors:...
Psalm has quite a few false positives, but most of them can be fixed with well positioned typehints (All of which are prefixed `@psalm-X` in code) Some of these issues...
RFC: Kint 6
If you've been paying attention to the repo you may have noticed a lot of commits showing up. Since the PHP 8.4 feature freeze on the 13th I've been working...
> Originally discussed in: https://github.com/kint-php/kint/issues/422#issuecomment-2381454524 In Kint 6, we can drop IE support and use [CSS variables](https://www.google.com/search?q=css+variables&ie=UTF-8&hl=en) together with media queries to detect dark mode support by the device or...