Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kint-php/kint
Kint - a powerful and modern PHP debugging tool.
https://github.com/kint-php/kint
debug kint php
Last synced: 12 days ago
JSON representation
Kint - a powerful and modern PHP debugging tool.
- Host: GitHub
- URL: https://github.com/kint-php/kint
- Owner: kint-php
- License: mit
- Created: 2012-05-16T19:55:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-26T15:24:27.000Z (7 months ago)
- Last Synced: 2024-05-18T22:19:17.607Z (6 months ago)
- Topics: debug, kint, php
- Language: PHP
- Homepage: http://kint-php.github.io/kint/
- Size: 6.63 MB
- Stars: 2,743
- Watchers: 110
- Forks: 289
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-resources - kint - Debuggin Utility with zero dependenices (Dev Tools / Libraries)
- awesome-php - Kint - A debugging and profiling tool. (Table of Contents / Debugging and Profiling)
- awesome-php-cn - Kint - 调试和分析工具. (目录 / 调试和性能分析 Debugging and Profiling)
- awesome-projects - Kint - A debugging and profiling tool. (PHP / Debugging and Profiling)
- awesome-php - Kint - A debugging and profiling tool. (Table of Contents / Debugging and Profiling)
- awesome - kint-php/kint - Kint - Advanced PHP dumper (PHP)
README
# Kint - Advanced PHP dumper
![Screenshot](https://kint-php.github.io/kint/images/intro.png)
## What am I looking at?
Kint is a dumper in the vein of **[var_dump()](https://secure.php.net/function.var_dump)**, with keyboard controls, search, access path provision, and automatic data parsing.
In other words, when you dump a JSON string Kint will let you unfold and search the JSON structure and even provide you the code you need to access specific fields.
## Installation
```bash
composer require kint-php/kint --dev
```### Without composer
[Download the file](https://raw.githubusercontent.com/kint-php/kint/master/build/kint.phar) and simply
```php
require 'kint.phar';
```## Usage
```php