composer.json 1.5 KB

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