composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "symfony/var-dumper",
  3. "type": "library",
  4. "description": "Symfony mechanism for exploring and dumping PHP variables",
  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.1.3",
  20. "symfony/polyfill-mbstring": "~1.0",
  21. "symfony/polyfill-php72": "~1.5"
  22. },
  23. "require-dev": {
  24. "ext-iconv": "*",
  25. "symfony/console": "~3.4|~4.0",
  26. "symfony/process": "~3.4|~4.0",
  27. "twig/twig": "~1.34|~2.4"
  28. },
  29. "conflict": {
  30. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  31. "symfony/console": "<3.4"
  32. },
  33. "suggest": {
  34. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  35. "ext-intl": "To show region name in time zone dump",
  36. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  37. },
  38. "autoload": {
  39. "files": [ "Resources/functions/dump.php" ],
  40. "psr-4": { "Symfony\\Component\\VarDumper\\": "" },
  41. "exclude-from-classmap": [
  42. "/Tests/"
  43. ]
  44. },
  45. "bin": [
  46. "Resources/bin/var-dump-server"
  47. ],
  48. "minimum-stability": "dev",
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "4.3-dev"
  52. }
  53. }
  54. }