Download the PHP package decodelabs/glitch without Composer
On this page you can find all versions of the php package decodelabs/glitch. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download decodelabs/glitch
More information about decodelabs/glitch
Files in decodelabs/glitch
Package glitch
Short Description Better tools for when things go wrong
License MIT
Informations about the package glitch
Glitch
Better tools for when things go wrong
Glitch is a standalone PHP package designed to dramatically improve error handling and inspection when developing your applications.
The project aims to provide deep data inspection tools and an Exception handling interface.
Installation
Glitch should be installed via composer
Usage
Glitch uses Veneer with its frontage registered at DecodeLabs\\Glitch
.
You can access all of the primary functionality through this frontage:
Setup
Otherwise, Glitch works out of the box without any special setup. There are however some optional steps you can take to customise operation.
Register as the default error handler:
Pass the microtime()
of initial app launch for timing purposes:
Dumps
Dump anything and everything easily, using simple global functions. The functions mirror those used in Symfony/VarDumper, maintaining compatibility by using Symfony's VarDumper interface if it is already loaded.
You can also mark functions as incomplete whilst in development:
Renderers
The resulting dump UI (when using the HTML renderer, the default option) is injected into an iframe at runtime so can be rendered into any HTML page without breaking anything. If the page is otherwise empty, the iframe will expand to fill the viewport if possible.
The dump output is rendered by an instance of DecodeLabs\Glitch\Renderer
which can be overridden on the default Context
at startup. The Html
renderer is loaded under http sapi, the Cli
renderer is used when under the CLI sapi.
Custom renderers may convert Entities
to other output formats depending on where they should be sent, such as Xml or Json for example. The Renderer system uses Nuance to inspect and render the data, please see that project for more information on how to create custom renderers.
Custom colours
The HTML renderer uses css variables to style individual element colours and can be overridden with custom values. Create a custom css file with variable overrides:
See colours.scss for all of the current colour override options.
Then load the file into the HTML renderer:
Transports
Once rendered, the dump information is delivered via an instance of DecodeLabs\Glitch\Transport
, also overridable on the default Context
. It is the responsibility of the Transport
to deliver the rendered dump.
By default, the render is just echoed out to STDOUT
, however custom transports may send information to other interfaces, browser extensions, logging systems, etc.
Custom dumps
You can customise how your own class instances are dumped by implementing DecodeLabs\Nuance\Dumpable
interface.
Please see the Nuance documentation for more information on how to do this.
Licensing
Glitch is licensed under the MIT License. See LICENSE for the full license text.
All versions of glitch with dependencies
symfony/polyfill-mbstring Version ^1.31
decodelabs/coercion Version ^0.3
decodelabs/enlighten Version ^0.9.2
decodelabs/exceptional Version ^0.6
decodelabs/monarch Version ^0.1.3
decodelabs/nuance Version ^0.1.2
decodelabs/remnant Version ^0.1
decodelabs/veneer Version ^0.12.2
psr/log Version ^3.0.2