You are here

README.txt in Devel 8

Same filename in this branch
  1. 8 README.txt
  2. 8 devel_generate/README.txt
  3. 8 kint/README.txt
Same filename and directory in other branches
  1. 8.2 kint/README.txt
WHAT IS IT?
-----------
Kint for PHP is a tool designed to present your debugging data in the absolutely
best way possible.

In other words, it's var_dump() and debug_backtrace() on steroids. Easy to use,
but powerful and customizable. An essential addition to your development
toolbox.

USAGE
-----
This module allows to use these aliases:
    kint($data1, $data2, $data3, ...);
    ksm($data1, $data2, $data3, ...)
    kint_trace();

But to get the most out of Kint, you will want to use directly the Kint class:
    kint_require();
    Kint::dump($data);

Learn more about Kint: http://raveren.github.io/kint/


The Kint class function dd() will not work as expected, because this alias
is already defined in devel.module for other purposes.

CONTACTS
--------
Module author:
    Alexander Danilenko
    danilenko.dn@gmail.com
    https://drupal.org/user/1072104

Kint author:
    Rokas Šleinius a.k.a. Raveren
    raveren@gmail.com
    https://github.com/raveren

File

kint/README.txt
View source
  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. In other words, it's var_dump() and debug_backtrace() on steroids. Easy to use,
  6. but powerful and customizable. An essential addition to your development
  7. toolbox.
  8. USAGE
  9. -----
  10. This module allows to use these aliases:
  11. kint($data1, $data2, $data3, ...);
  12. ksm($data1, $data2, $data3, ...)
  13. kint_trace();
  14. But to get the most out of Kint, you will want to use directly the Kint class:
  15. kint_require();
  16. Kint::dump($data);
  17. Learn more about Kint: http://raveren.github.io/kint/
  18. The Kint class function dd() will not work as expected, because this alias
  19. is already defined in devel.module for other purposes.
  20. CONTACTS
  21. --------
  22. Module author:
  23. Alexander Danilenko
  24. danilenko.dn@gmail.com
  25. https://drupal.org/user/1072104
  26. Kint author:
  27. Rokas Šleinius a.k.a. Raveren
  28. raveren@gmail.com
  29. https://github.com/raveren