composer.json 823 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "ringcentral/psr7",
  3. "type": "library",
  4. "description": "PSR-7 message implementation",
  5. "keywords": ["message", "stream", "http", "uri"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Michael Dowling",
  10. "email": "mtdowling@gmail.com",
  11. "homepage": "https://github.com/mtdowling"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3",
  16. "psr/http-message": "~1.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.0"
  20. },
  21. "provide": {
  22. "psr/http-message-implementation": "1.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "RingCentral\\Psr7\\": "src/"
  27. },
  28. "files": ["src/functions_include.php"]
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.0-dev"
  33. }
  34. }
  35. }