composer.json 1.2 KB

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