composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "php-http/httplug",
  3. "description": "HTTPlug, the HTTP client abstraction for PHP",
  4. "keywords": [
  5. "http",
  6. "client"
  7. ],
  8. "homepage": "http://httplug.io",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Eric GELOEN",
  13. "email": "geloen.eric@gmail.com"
  14. },
  15. {
  16. "name": "Márk Sági-Kazár",
  17. "email": "mark.sagikazar@gmail.com",
  18. "homepage": "https://sagikazarmark.hu"
  19. }
  20. ],
  21. "require": {
  22. "php": "^7.1 || ^8.0",
  23. "php-http/promise": "^1.1",
  24. "psr/http-client": "^1.0",
  25. "psr/http-message": "^1.0"
  26. },
  27. "require-dev": {
  28. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  29. "phpspec/phpspec": "^5.1 || ^6.0"
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "2.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Http\\Client\\": "src/"
  39. }
  40. },
  41. "scripts": {
  42. "test": "vendor/bin/phpspec run",
  43. "test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
  44. }
  45. }