You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.5 KiB

2 years ago
  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": ">=7.2.5",
  20. "symfony/polyfill-mbstring": "~1.0",
  21. "symfony/polyfill-php80": "^1.16"
  22. },
  23. "require-dev": {
  24. "ext-iconv": "*",
  25. "symfony/console": "^4.4|^5.0|^6.0",
  26. "symfony/process": "^4.4|^5.0|^6.0",
  27. "symfony/uid": "^5.1|^6.0",
  28. "twig/twig": "^2.13|^3.0.4"
  29. },
  30. "conflict": {
  31. "phpunit/phpunit": "<5.4.3",
  32. "symfony/console": "<4.4"
  33. },
  34. "suggest": {
  35. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  36. "ext-intl": "To show region name in time zone dump",
  37. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  38. },
  39. "autoload": {
  40. "files": [ "Resources/functions/dump.php" ],
  41. "psr-4": { "Symfony\\Component\\VarDumper\\": "" },
  42. "exclude-from-classmap": [
  43. "/Tests/"
  44. ]
  45. },
  46. "bin": [
  47. "Resources/bin/var-dump-server"
  48. ],
  49. "minimum-stability": "dev"
  50. }