composer.json 1.1 KB

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