composer.json 547 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "michel/vardumper",
  3. "description": "A lightweight and versatile PHP library for debugging and inspecting variables with customizable output formats.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "F. Michel"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\Debug\\": "src",
  14. "Test\\Michel\\Debug\\": "tests"
  15. },
  16. "files": [
  17. "functions/helpers.php"
  18. ]
  19. },
  20. "require": {
  21. "php": ">=7.4",
  22. "ext-json": "*"
  23. },
  24. "require-dev": {
  25. "michel/unitester": "^1.0.0"
  26. }
  27. }