composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/debug-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Provides a tight integration of the Symfony Debug component into the Symfony full-stack framework",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "ext-xml": "*",
  21. "symfony/http-kernel": "^4.4|^5.0",
  22. "symfony/twig-bridge": "^4.4|^5.0",
  23. "symfony/var-dumper": "^4.4|^5.0"
  24. },
  25. "require-dev": {
  26. "symfony/config": "^4.4|^5.0",
  27. "symfony/dependency-injection": "^4.4|^5.0",
  28. "symfony/web-profiler-bundle": "^4.4|^5.0"
  29. },
  30. "conflict": {
  31. "symfony/config": "<4.4",
  32. "symfony/dependency-injection": "<5.2"
  33. },
  34. "suggest": {
  35. "symfony/config": "For service container configuration",
  36. "symfony/dependency-injection": "For using as a service from the container"
  37. },
  38. "autoload": {
  39. "psr-4": { "Symfony\\Bundle\\DebugBundle\\": "" },
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "minimum-stability": "dev"
  45. }