diff options
author | Remi Collet <fedora@famillecollet.com> | 2017-01-24 17:55:12 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2017-01-24 17:55:12 +0100 |
commit | a37afd9141e0f904c957c5d2ea770b775d68a194 (patch) | |
tree | 173e2574695ba29a1fbdd0b1bf985de2bab8c92c | |
parent | 6b6222fbc67ad6d699e83f8fae50c921ad0b454b (diff) |
php-react-stream: backport
-rw-r--r-- | composer.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3397dd8 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "clue/stream-filter", + "description": "A simple and modern approach to stream filtering in PHP", + "keywords": ["stream", "callback", "filter", "php_user_filter", "stream_filter_append", "stream_filter_register", "bucket brigade"], + "homepage": "https://github.com/clue/php-stream-filter", + "license": "MIT", + "authors": [ + { + "name": "Christian Lück", + "email": "christian@lueck.tv" + } + ], + "require": { + "php": ">=5.3" + }, + "autoload": { + "psr-4": { "Clue\\StreamFilter\\": "src/" }, + "files": [ "src/functions.php" ] + } +} |