composer.json 1.6 KB

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