composer.json 836 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "ezimuel/guzzlestreams",
  3. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  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": ">=7.4.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "~9.0",
  19. "phpstan/phpstan": "^2.1"
  20. },
  21. "autoload": {
  22. "psr-4": { "GuzzleHttp\\Stream\\": "src/" }
  23. },
  24. "scripts": {
  25. "test": "make test",
  26. "phpstan": "vendor/bin/phpstan analyse src"
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "3.0-dev"
  31. }
  32. }
  33. }