composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.1",
  20. "symfony/deprecation-contracts": "^2.5|^3",
  21. "symfony/polyfill-mbstring": "~1.0"
  22. },
  23. "require-dev": {
  24. "ext-iconv": "*",
  25. "symfony/console": "^5.4|^6.0|^7.0",
  26. "symfony/error-handler": "^6.3|^7.0",
  27. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  28. "symfony/process": "^5.4|^6.0|^7.0",
  29. "symfony/uid": "^5.4|^6.0|^7.0",
  30. "twig/twig": "^2.13|^3.0.4"
  31. },
  32. "conflict": {
  33. "symfony/console": "<5.4"
  34. },
  35. "autoload": {
  36. "files": [ "Resources/functions/dump.php" ],
  37. "psr-4": { "Symfony\\Component\\VarDumper\\": "" },
  38. "exclude-from-classmap": [
  39. "/Tests/"
  40. ]
  41. },
  42. "bin": [
  43. "Resources/bin/var-dump-server"
  44. ],
  45. "minimum-stability": "dev"
  46. }