composer.json 946 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "hyperf/pipeline",
  3. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "pipeline"
  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. "psr/container": "^1.0|^2.0"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Hyperf\\Pipeline\\": "src/"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "HyperfTest\\Pipeline\\": "tests/"
  30. }
  31. },
  32. "config": {
  33. "sort-packages": true
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "3.1-dev"
  38. }
  39. }
  40. }