composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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": ">=8.1",
  19. "hyperf/context": "~3.1.0",
  20. "hyperf/contract": "~3.1.0",
  21. "hyperf/dispatcher": "~3.1.0",
  22. "hyperf/http-message": "~3.1.0",
  23. "hyperf/stdlib": "~3.1.0",
  24. "hyperf/support": "~3.1.0",
  25. "psr/container": "^1.0|^2.0",
  26. "psr/http-message": "^1.0|^2.0",
  27. "swow/psr7-plus": "^1.0"
  28. },
  29. "suggest": {
  30. "hyperf/di": "Required to use #[ExceptionHandler]",
  31. "hyperf/event": "Required to use listeners",
  32. "hyperf/framework": "Required to use listeners",
  33. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Hyperf\\ExceptionHandler\\": "src/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "HyperfTest\\ExceptionHandler\\": "tests/"
  43. }
  44. },
  45. "config": {
  46. "sort-packages": true
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "3.1-dev"
  51. },
  52. "hyperf": {
  53. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  54. }
  55. }
  56. }