summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 3397dd823fd9751e0b2283feecd10704225cf2de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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" ]
    }
}