composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "ezimuel/ringphp",
  3. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Michael Dowling",
  8. "email": "mtdowling@gmail.com",
  9. "homepage": "https://github.com/mtdowling"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.4.0",
  14. "ezimuel/guzzlestreams": "^3.0.1",
  15. "react/promise": "~2.0"
  16. },
  17. "require-dev": {
  18. "ext-curl": "*",
  19. "phpunit/phpunit": "~9.0"
  20. },
  21. "replace": {
  22. "guzzlehttp/ringphp": "self.version"
  23. },
  24. "suggest": {
  25. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "GuzzleHttp\\Ring\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "GuzzleHttp\\Tests\\Ring\\": "tests/"
  35. }
  36. },
  37. "scripts": {
  38. "test": "make test",
  39. "test-ci": "make coverage"
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "1.1-dev"
  44. }
  45. }
  46. }