composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "hyperf/config",
  3. "description": "An independent component that provides configuration container.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "config",
  10. "configuration"
  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.2",
  21. "hyperf/contract": "~2.2.0",
  22. "hyperf/utils": "~2.2.0",
  23. "psr/container": "^1.0|^2.0",
  24. "symfony/finder": "^5.0"
  25. },
  26. "suggest": {
  27. "vlucas/phpdotenv": "Allows using enviroment value to override the config",
  28. "hyperf/di": "Allows using @Value annotation",
  29. "hyperf/event": "Allows using @Value annotation",
  30. "hyperf/framework": "Allows using @Value annotation"
  31. },
  32. "autoload": {
  33. "files": [
  34. "./src/Functions.php"
  35. ],
  36. "psr-4": {
  37. "Hyperf\\Config\\": "src/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "HyperfTest\\Config\\": "tests/"
  43. }
  44. },
  45. "config": {
  46. "sort-packages": true
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-master": "2.2-dev"
  51. },
  52. "hyperf": {
  53. "config": "Hyperf\\Config\\ConfigProvider"
  54. }
  55. }
  56. }