composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "hyperf/stringable",
  3. "description": "Hyperf Stringable package which come from illuminate/support",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "stringable"
  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. "ext-mbstring": "*",
  21. "hyperf/collection": "~3.1.0",
  22. "hyperf/conditionable": "~3.1.0",
  23. "hyperf/macroable": "~3.1.0",
  24. "hyperf/tappable": "~3.1.0"
  25. },
  26. "suggest": {
  27. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  28. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)",
  29. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Hyperf\\Stringable\\": "src/"
  34. },
  35. "files": [
  36. "src/Functions.php"
  37. ]
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "HyperfTest\\Stringable\\": "tests/"
  42. }
  43. },
  44. "config": {
  45. "sort-packages": true
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "3.1-dev"
  50. }
  51. }
  52. }