composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "php-http/guzzle6-adapter",
  3. "description": "Guzzle 6 HTTP Adapter",
  4. "license": "MIT",
  5. "keywords": ["guzzle", "http"],
  6. "homepage": "http://httplug.io",
  7. "authors": [
  8. {
  9. "name": "David de Boer",
  10. "email": "david@ddeboer.nl"
  11. },
  12. {
  13. "name": "Márk Sági-Kazár",
  14. "email": "mark.sagikazar@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^7.1 || ^8.0",
  19. "php-http/httplug": "^2.0",
  20. "psr/http-client": "^1.0",
  21. "guzzlehttp/guzzle": "^6.0"
  22. },
  23. "require-dev": {
  24. "ext-curl": "*",
  25. "phpunit/phpunit": "^7.4 || ^8.4",
  26. "php-http/client-integration-tests": "^2.0 || ^3.0"
  27. },
  28. "provide": {
  29. "php-http/client-implementation": "1.0",
  30. "php-http/async-client-implementation": "1.0",
  31. "psr/http-client-implementation": "1.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Http\\Adapter\\Guzzle6\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Http\\Adapter\\Guzzle6\\Tests\\": "tests/"
  41. }
  42. },
  43. "scripts": {
  44. "test": "vendor/bin/phpunit",
  45. "test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "2.x-dev"
  50. }
  51. }
  52. }