Plugin for Kint to provide better Smarty support.
Internal Smarty objects are so big they sometimes hang the browser when dumped. This plugin sanitizes the display and only displays minimal, useful data:
- Assigned variables (local and global)
- User-configurable values such as compiled directory and custom functions.
Zero setup; install via composer:
composer require kint-php/kint-smarty --dev
or download the file, include it after Kint and register it:
<?php
require 'kint.phar';
require 'SmartyPlugin.php';
Kint::$plugins[] = 'Kint\\Parser\\SmartyPlugin';
MIT