composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "issues": "https://github.com/hyperf/hyperf/issues",
  13. "source": "https://github.com/hyperf/hyperf",
  14. "docs": "https://hyperf.wiki",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  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/stringable": "~3.1.0",
  25. "hyperf/support": "~3.1.0",
  26. "psr/container": "^1.0 || ^2.0",
  27. "psr/http-message": "^1.0 || ^2.0",
  28. "swow/psr7-plus": "^1.0"
  29. },
  30. "suggest": {
  31. "hyperf/di": "Required to use #[ExceptionHandler]",
  32. "hyperf/event": "Required to use listeners",
  33. "hyperf/framework": "Required to use listeners",
  34. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Hyperf\\ExceptionHandler\\": "src/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "HyperfTest\\ExceptionHandler\\": "tests/"
  44. }
  45. },
  46. "config": {
  47. "sort-packages": true
  48. },
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "3.1-dev"
  52. },
  53. "hyperf": {
  54. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  55. }
  56. }
  57. }