composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "source": "https://github.com/hyperf/hyperf",
  15. "docs": "https://hyperf.wiki",
  16. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  17. },
  18. "require": {
  19. "php": ">=8.1",
  20. "ext-mbstring": "*",
  21. "doctrine/inflector": "^2.0",
  22. "hyperf/collection": "~3.1.0",
  23. "hyperf/conditionable": "~3.1.0",
  24. "hyperf/macroable": "~3.1.0",
  25. "hyperf/tappable": "~3.1.0"
  26. },
  27. "suggest": {
  28. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  29. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  30. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Hyperf\\Stringable\\": "src/"
  35. },
  36. "files": [
  37. "src/Functions.php"
  38. ]
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "HyperfTest\\Stringable\\": "tests/"
  43. }
  44. },
  45. "config": {
  46. "sort-packages": true
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "3.1-dev"
  51. }
  52. }
  53. }