composer.json 837 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "clue/ndjson-react",
  3. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  4. "keywords": ["NDJSON", "newline", "JSON", "jsonlines", "streaming", "ReactPHP"],
  5. "homepage": "https://github.com/clue/reactphp-ndjson",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Christian Lück",
  10. "email": "christian@clue.engineering"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3",
  15. "react/stream": "^1.2"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  19. "react/event-loop": "^1.2"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Clue\\React\\NDJson\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "Clue\\Tests\\React\\NDJson\\": "tests/"
  29. }
  30. }
  31. }