composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": ">=5.5.0",
  19. "php-http/httplug": "^1.0",
  20. "guzzlehttp/guzzle": "^6.0"
  21. },
  22. "require-dev": {
  23. "ext-curl": "*",
  24. "php-http/adapter-integration-tests": "^0.4"
  25. },
  26. "provide": {
  27. "php-http/client-implementation": "1.0",
  28. "php-http/async-client-implementation": "1.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Http\\Adapter\\Guzzle6\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Http\\Adapter\\Guzzle6\\Tests\\": "tests/"
  38. }
  39. },
  40. "scripts": {
  41. "test": "vendor/bin/phpunit",
  42. "test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.2-dev"
  47. }
  48. }
  49. }