composer.json 1017 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "yiisoft/yii2-httpclient",
  3. "description": "HTTP client extension for the Yii framework",
  4. "keywords": ["yii2", "http", "httpclient", "curl"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-httpclient/issues",
  9. "forum": "http://www.yiiframework.com/forum/",
  10. "wiki": "http://www.yiiframework.com/wiki/",
  11. "irc": "irc://irc.freenode.net/yii",
  12. "source": "https://github.com/yiisoft/yii2-httpclient"
  13. },
  14. "authors": [
  15. {
  16. "name": "Paul Klimov",
  17. "email": "klimov.paul@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.13"
  22. },
  23. "repositories": [
  24. {
  25. "type": "composer",
  26. "url": "https://asset-packagist.org"
  27. }
  28. ],
  29. "autoload": {
  30. "psr-4": { "yii\\httpclient\\": "src" }
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "2.0.x-dev"
  35. }
  36. }
  37. }