composer.json 913 B

12345678910111213141516171819202122232425262728293031323334353637
  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.3.9"
  20. },
  21. "require-dev": {
  22. "symfony/phpunit-bridge": "~2.7"
  23. },
  24. "suggest": {
  25. "ext-symfony_debug": ""
  26. },
  27. "autoload": {
  28. "files": [ "Resources/functions/dump.php" ],
  29. "psr-4": { "Symfony\\Component\\VarDumper\\": "" }
  30. },
  31. "minimum-stability": "dev",
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "2.7-dev"
  35. }
  36. }
  37. }