composer.json 731 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "hyperf/ide-helper",
  3. "description": "IDE help files for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "ide-helper"
  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. "autoload-dev": {
  19. "psr-4": {
  20. "Hyperf\\IDEHelper\\": "src/"
  21. }
  22. },
  23. "config": {
  24. "sort-packages": true
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "2.2-dev"
  29. }
  30. }
  31. }