composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/error-handler",
  3. "type": "library",
  4. "description": "Provides tools to manage errors and 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": ">=8.2",
  20. "psr/log": "^1|^2|^3",
  21. "symfony/polyfill-php85": "^1.32",
  22. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  23. },
  24. "require-dev": {
  25. "symfony/console": "^6.4|^7.0|^8.0",
  26. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  27. "symfony/serializer": "^6.4|^7.0|^8.0",
  28. "symfony/deprecation-contracts": "^2.5|^3",
  29. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  30. },
  31. "conflict": {
  32. "symfony/deprecation-contracts": "<2.5",
  33. "symfony/http-kernel": "<6.4"
  34. },
  35. "autoload": {
  36. "psr-4": { "Symfony\\Component\\ErrorHandler\\": "" },
  37. "exclude-from-classmap": [
  38. "/Tests/"
  39. ]
  40. },
  41. "bin": [
  42. "Resources/bin/patch-type-declarations"
  43. ],
  44. "minimum-stability": "dev"
  45. }