composer.json 704 B

123456789101112131415161718192021222324
  1. {
  2. "name": "clue/stream-filter",
  3. "description": "A simple and modern approach to stream filtering in PHP",
  4. "keywords": ["stream", "callback", "filter", "php_user_filter", "stream_filter_append", "stream_filter_register", "bucket brigade"],
  5. "homepage": "https://github.com/clue/php-stream-filter",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Christian Lück",
  10. "email": "christian@lueck.tv"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^5.0 || ^4.8"
  18. },
  19. "autoload": {
  20. "psr-4": { "Clue\\StreamFilter\\": "src/" },
  21. "files": [ "src/functions_include.php" ]
  22. }
  23. }