composer.json 747 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "hyperf/contract",
  3. "description": "The contracts of Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "docs": "https://hyperf.wiki",
  13. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  15. "source": "https://github.com/hyperf/hyperf"
  16. },
  17. "require": {
  18. "php": ">=7.2"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Hyperf\\Contract\\": "src/"
  23. }
  24. },
  25. "config": {
  26. "sort-packages": true
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "2.2-dev"
  31. }
  32. }
  33. }