composer.json 976 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "hyperf/translation",
  3. "type": "library",
  4. "description": "An independent translation component, forked by illuminate/translation.",
  5. "license": "MIT",
  6. "keywords": [
  7. "translation",
  8. "hyperf"
  9. ],
  10. "require": {
  11. "php": ">=8.1",
  12. "hyperf/contract": "~3.1.0",
  13. "hyperf/macroable": "~3.1.0",
  14. "hyperf/support": "~3.1.0",
  15. "hyperf/utils": "~3.1.0",
  16. "psr/container": "^1.0|^2.0"
  17. },
  18. "autoload": {
  19. "files": [
  20. "src/Functions.php"
  21. ],
  22. "psr-4": {
  23. "Hyperf\\Translation\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "HyperfTest\\Translation\\": "tests"
  29. }
  30. },
  31. "config": {
  32. "sort-packages": true
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "3.1-dev"
  37. },
  38. "hyperf": {
  39. "config": "Hyperf\\Translation\\ConfigProvider"
  40. }
  41. }
  42. }