composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "symfony/http-client",
  3. "type": "library",
  4. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5. "keywords": ["http"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "provide": {
  19. "php-http/async-client-implementation": "*",
  20. "php-http/client-implementation": "*",
  21. "psr/http-client-implementation": "1.0",
  22. "symfony/http-client-implementation": "2.4"
  23. },
  24. "require": {
  25. "php": ">=7.2.5",
  26. "psr/log": "^1|^2|^3",
  27. "symfony/deprecation-contracts": "^2.1|^3",
  28. "symfony/http-client-contracts": "^2.4",
  29. "symfony/polyfill-php73": "^1.11",
  30. "symfony/polyfill-php80": "^1.16",
  31. "symfony/service-contracts": "^1.0|^2|^3"
  32. },
  33. "require-dev": {
  34. "amphp/amp": "^2.5",
  35. "amphp/http-client": "^4.2.1",
  36. "amphp/http-tunnel": "^1.0",
  37. "amphp/socket": "^1.1",
  38. "guzzlehttp/promises": "^1.4",
  39. "nyholm/psr7": "^1.0",
  40. "php-http/httplug": "^1.0|^2.0",
  41. "php-http/message-factory": "^1.0",
  42. "psr/http-client": "^1.0",
  43. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  44. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  45. "symfony/process": "^4.4|^5.0|^6.0",
  46. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  47. },
  48. "autoload": {
  49. "psr-4": { "Symfony\\Component\\HttpClient\\": "" },
  50. "exclude-from-classmap": [
  51. "/Tests/"
  52. ]
  53. },
  54. "minimum-stability": "dev"
  55. }