Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / devel / kint / README.txt
1 WHAT IS IT?
2 -----------
3 Kint for PHP is a tool designed to present your debugging data in the absolutely
4 best way possible.
5
6 In other words, it's var_dump() and debug_backtrace() on steroids. Easy to use,
7 but powerful and customizable. An essential addition to your development
8 toolbox.
9
10 USAGE
11 -----
12 This module allows to use these aliases:
13     kint($data1, $data2, $data3, ...);
14     ksm($data1, $data2, $data3, ...)
15     kint_trace();
16
17 But to get the most out of Kint, you will want to use directly the Kint class:
18     kint_require();
19     Kint::dump($data);
20
21 Learn more about Kint: http://raveren.github.io/kint/
22
23
24 The Kint class function dd() will not work as expected, because this alias
25 is already defined in devel.module for other purposes.
26
27 CONTACTS
28 --------
29 Module author:
30     Alexander Danilenko
31     danilenko.dn@gmail.com
32     https://drupal.org/user/1072104
33
34 Kint author:
35     Rokas Šleinius a.k.a. Raveren
36     raveren@gmail.com
37     https://github.com/raveren