composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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": "^5.5.9|>=7.0.8",
  20. "symfony/polyfill-mbstring": "~1.0"
  21. },
  22. "require-dev": {
  23. "ext-iconv": "*",
  24. "twig/twig": "~1.34|~2.4"
  25. },
  26. "conflict": {
  27. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  28. },
  29. "suggest": {
  30. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  31. "ext-intl": "To show region name in time zone dump",
  32. "ext-symfony_debug": ""
  33. },
  34. "autoload": {
  35. "files": [ "Resources/functions/dump.php" ],
  36. "psr-4": { "Symfony\\Component\\VarDumper\\": "" },
  37. "exclude-from-classmap": [
  38. "/Tests/"
  39. ]
  40. },
  41. "minimum-stability": "dev",
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "3.4-dev"
  45. }
  46. }
  47. }