composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "symfony/var-dumper",
  3. "type": "library",
  4. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5. "keywords": ["dump", "debug"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=8.2",
  20. "symfony/polyfill-mbstring": "~1.0"
  21. },
  22. "require-dev": {
  23. "ext-iconv": "*",
  24. "symfony/console": "^6.4|^7.0",
  25. "symfony/http-kernel": "^6.4|^7.0",
  26. "symfony/process": "^6.4|^7.0",
  27. "symfony/uid": "^6.4|^7.0",
  28. "twig/twig": "^3.12"
  29. },
  30. "conflict": {
  31. "symfony/console": "<6.4"
  32. },
  33. "autoload": {
  34. "files": [ "Resources/functions/dump.php" ],
  35. "psr-4": { "Symfony\\Component\\VarDumper\\": "" },
  36. "exclude-from-classmap": [
  37. "/Tests/"
  38. ]
  39. },
  40. "bin": [
  41. "Resources/bin/var-dump-server"
  42. ],
  43. "minimum-stability": "dev"
  44. }