README.txt 967 B

12345678910111213141516171819202122232425262728293031323334353637
  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