composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "hyperf/di",
  3. "description": "A DI for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "di",
  10. "annotation"
  11. ],
  12. "homepage": "https://hyperf.io",
  13. "support": {
  14. "docs": "https://hyperf.wiki",
  15. "issues": "https://github.com/hyperf/hyperf/issues",
  16. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  17. "source": "https://github.com/hyperf/hyperf"
  18. },
  19. "require": {
  20. "php": ">=7.3",
  21. "doctrine/annotations": "^1.6",
  22. "doctrine/instantiator": "^1.0",
  23. "nikic/php-parser": "^4.1",
  24. "php-di/phpdoc-reader": "^2.2",
  25. "psr/container": "^1.0|^2.0",
  26. "symfony/finder": "^5.0",
  27. "vlucas/phpdotenv": "^5.0"
  28. },
  29. "suggest": {
  30. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path.",
  31. "ext-pcntl": "Required to scan annotations."
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Hyperf\\Di\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "HyperfTest\\Di\\": "tests/"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "2.2-dev"
  49. },
  50. "hyperf": {
  51. "config": "Hyperf\\Di\\ConfigProvider"
  52. }
  53. }
  54. }