You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "guzzlehttp/ringphp",
  3. "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
  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. "guzzlehttp/streams": "~3.0",
  15. "react/promise": "~2.0"
  16. },
  17. "require-dev": {
  18. "ext-curl": "*",
  19. "phpunit/phpunit": "~4.0"
  20. },
  21. "suggest": {
  22. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "GuzzleHttp\\Ring\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "GuzzleHttp\\Tests\\Ring\\": "tests/"
  32. }
  33. },
  34. "scripts": {
  35. "test": "make test",
  36. "test-ci": "make coverage"
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.1-dev"
  41. }
  42. }
  43. }