composer.json 716 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "bcremer/line-reader",
  3. "description": "Read large files line by line in a memory efficient (constant) way.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Benjamin Cremer",
  9. "email": "bc@benjamin-cremer.de"
  10. }
  11. ],
  12. "require": {
  13. "php": "^7.3|^7.4|^8.0"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^9.4",
  17. "infection/infection": "^0.18"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Bcremer\\LineReader\\": "src/"
  22. }
  23. },
  24. "autoload-dev": {
  25. "psr-4": {
  26. "Bcremer\\LineReaderTests\\": "tests/"
  27. }
  28. },
  29. "scripts": {
  30. "test": "phpunit"
  31. }
  32. }