composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "hyperf/exception-handler",
  3. "description": "Exception handler for hyperf",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "exception-handler"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "docs": "https://hyperf.wiki",
  13. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  15. "source": "https://github.com/hyperf/hyperf"
  16. },
  17. "require": {
  18. "php": ">=7.2",
  19. "hyperf/contract": "~2.2.0",
  20. "hyperf/dispatcher": "~2.2.0",
  21. "hyperf/utils": "~2.2.0",
  22. "psr/container": "^1.0|^2.0",
  23. "psr/http-message": "^1.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Hyperf\\ExceptionHandler\\": "src/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "HyperfTest\\ExceptionHandler\\": "tests/"
  33. }
  34. },
  35. "config": {
  36. "sort-packages": true
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "2.2-dev"
  41. },
  42. "hyperf": {
  43. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  44. }
  45. }
  46. }