You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
985 B

3 years ago
  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": ">=7.2.5",
  20. "psr/log": "^1.0",
  21. "symfony/polyfill-php80": "^1.15",
  22. "symfony/var-dumper": "^4.4|^5.0"
  23. },
  24. "require-dev": {
  25. "symfony/http-kernel": "^4.4|^5.0",
  26. "symfony/serializer": "^4.4|^5.0",
  27. "symfony/deprecation-contracts": "^2.1"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\ErrorHandler\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "minimum-stability": "dev"
  36. }