composer.json 885 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "symfony/debug",
  3. "type": "library",
  4. "description": "Provides tools to ease debugging PHP code",
  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.1.3",
  20. "psr/log": "~1.0",
  21. "symfony/polyfill-php80": "^1.15"
  22. },
  23. "conflict": {
  24. "symfony/http-kernel": "<3.4"
  25. },
  26. "require-dev": {
  27. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\Debug\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "minimum-stability": "dev"
  36. }