composer.json 879 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "symfony/http-client-contracts",
  3. "type": "library",
  4. "description": "Generic abstractions related to HTTP clients",
  5. "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"],
  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. "require": {
  19. "php": "^7.1.3"
  20. },
  21. "suggest": {
  22. "symfony/http-client-implementation": ""
  23. },
  24. "autoload": {
  25. "psr-4": { "Symfony\\Contracts\\HttpClient\\": "" }
  26. },
  27. "minimum-stability": "dev",
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.1-dev"
  31. }
  32. }
  33. }