composer.json 766 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "guzzle/stream",
  3. "description": "Guzzle stream wrapper component",
  4. "homepage": "http://guzzlephp.org/",
  5. "keywords": ["stream", "component", "guzzle"],
  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.2",
  16. "guzzle/common": "self.version"
  17. },
  18. "suggest": {
  19. "guzzle/http": "To convert Guzzle request objects to PHP streams"
  20. },
  21. "autoload": {
  22. "psr-0": { "Guzzle\\Stream": "" }
  23. },
  24. "target-dir": "Guzzle/Stream",
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "3.7-dev"
  28. }
  29. }
  30. }