composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": "3.0"
  22. },
  23. "require": {
  24. "php": ">=8.0.2",
  25. "psr/log": "^1|^2|^3",
  26. "symfony/http-client-contracts": "^3",
  27. "symfony/service-contracts": "^1.0|^2|^3"
  28. },
  29. "require-dev": {
  30. "amphp/amp": "^2.5",
  31. "amphp/http-client": "^4.2.1",
  32. "amphp/http-tunnel": "^1.0",
  33. "amphp/socket": "^1.1",
  34. "guzzlehttp/promises": "^1.4",
  35. "nyholm/psr7": "^1.0",
  36. "php-http/httplug": "^1.0|^2.0",
  37. "psr/http-client": "^1.0",
  38. "symfony/dependency-injection": "^5.4|^6.0",
  39. "symfony/http-kernel": "^5.4|^6.0",
  40. "symfony/process": "^5.4|^6.0",
  41. "symfony/stopwatch": "^5.4|^6.0"
  42. },
  43. "autoload": {
  44. "psr-4": { "Symfony\\Component\\HttpClient\\": "" },
  45. "exclude-from-classmap": [
  46. "/Tests/"
  47. ]
  48. },
  49. "minimum-stability": "dev"
  50. }