Settings -> Plugins -> Marketplace -> Remote Call. Kint\Kint::$file_link_format = 'http://localhost:8091/?message=%f:%l'; # show full (not edited) path to files so I can click em in console Kint\Kint::$app_root_dirs = [ realpath($_SERVER['DOCUMENT_ROOT']) => realpath($_SERVER['DOCUMENT_ROOT']), ]; ################################## # add convenient shorthand aliases if (!function_exists('kd')) { /** * Alias of Kint::dump(); die; is compatible with symfony & laravel (it leaves their dd helper alone) */ function kd() { $args = func_get_args(); call_user_func_array(array('Kint', 'dump'), $args); die; } Kint::$aliases[] = 'kd'; } if (!function_exists('sd')) { /** * Alias of kd(), just outputs plain htmlescaped text. */ function sd() { $args = func_get_args(); call_user_func_array('s', $args); die; } Kint::$aliases[] = 'sd'; } ##################################