composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "hyperf/collection",
  3. "description": "Hyperf Collection package which come from illuminate/collections",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "collection"
  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. "hyperf/conditionable": "~3.1.0",
  21. "hyperf/contract": "~3.1.0",
  22. "hyperf/macroable": "~3.1.0",
  23. "hyperf/stringable": "~3.1.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Hyperf\\Collection\\": "src/"
  28. },
  29. "files": [
  30. "src/Functions.php"
  31. ]
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "HyperfTest\\Collection\\": "tests/"
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "3.1-dev"
  44. }
  45. }
  46. }