composer.json 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "hyperf/tappable",
  3. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "tappable"
  10. ],
  11. "homepage": "https://hyperf.io",
  12. "support": {
  13. "docs": "https://hyperf.wiki",
  14. "issues": "https://github.com/hyperf/hyperf/issues",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  16. "source": "https://github.com/hyperf/hyperf"
  17. },
  18. "require": {
  19. "php": ">=8.1"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Hyperf\\Tappable\\": "src/"
  24. },
  25. "files": [
  26. "src/Functions.php"
  27. ]
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "HyperfTest\\Tappable\\": "tests/"
  32. }
  33. },
  34. "config": {
  35. "sort-packages": true
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "3.1-dev"
  40. }
  41. }
  42. }