composer.json 675 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "guzzlehttp/streams",
  3. "description": "Provides a simple abstraction over streams of data",
  4. "homepage": "http://guzzlephp.org/",
  5. "keywords": ["stream", "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.4.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "~4.0"
  19. },
  20. "autoload": {
  21. "psr-4": { "GuzzleHttp\\Stream\\": "src/" }
  22. },
  23. "extra": {
  24. "branch-alias": {
  25. "dev-master": "3.0-dev"
  26. }
  27. }
  28. }