composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "guzzlehttp/guzzle",
  3. "type": "library",
  4. "description": "Guzzle is a PHP HTTP client library",
  5. "keywords": [
  6. "framework",
  7. "http",
  8. "rest",
  9. "web service",
  10. "curl",
  11. "client",
  12. "HTTP client"
  13. ],
  14. "homepage": "http://guzzlephp.org/",
  15. "license": "MIT",
  16. "authors": [
  17. {
  18. "name": "Michael Dowling",
  19. "email": "mtdowling@gmail.com",
  20. "homepage": "https://github.com/mtdowling"
  21. }
  22. ],
  23. "require": {
  24. "php": ">=5.5",
  25. "ext-json": "*",
  26. "guzzlehttp/promises": "^1.0",
  27. "guzzlehttp/psr7": "^1.6.1"
  28. },
  29. "require-dev": {
  30. "ext-curl": "*",
  31. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  32. "psr/log": "^1.1"
  33. },
  34. "suggest": {
  35. "psr/log": "Required for using the Log middleware"
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "6.3-dev"
  43. }
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "GuzzleHttp\\": "src/"
  48. },
  49. "files": [
  50. "src/functions_include.php"
  51. ]
  52. },
  53. "autoload-dev": {
  54. "psr-4": {
  55. "GuzzleHttp\\Tests\\": "tests/"
  56. }
  57. }
  58. }