summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 797fb536bc569b8a4899436bd862eb79010b7e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "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@clue.engineering"
        }
    ],
    "require": {
        "php": ">=5.3"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
    },
    "autoload": {
        "psr-4": { "Clue\\StreamFilter\\": "src/" },
        "files": [ "src/functions_include.php" ]
    },
    "autoload-dev": {
        "psr-4": { "Clue\\Tests\\StreamFilter\\": "tests/" }
    }
}