summaryrefslogtreecommitdiffstats
path: root/vendor/clue/stdio-react/composer.json
blob: 0e86dcb3501c075209776ffc0a8610f071167b08 (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
27
28
29
30
31
32
33
34
35
36
37
{
    "name": "clue/stdio-react",
    "description": "Async, event-driven console input & output (STDIN, STDOUT) for truly interactive CLI applications, built on top of ReactPHP",
    "keywords": ["stdio", "stdin", "stdout", "interactive", "CLI", "readline", "autocomplete", "autocompletion", "history", "ReactPHP", "async"],
    "homepage": "https://github.com/clue/reactphp-stdio",
    "license": "MIT",
    "authors": [
        {
            "name": "Christian Lück",
            "email": "christian@clue.engineering"
        }
    ],
    "require": {
        "php": ">=5.3",
        "clue/term-react": "^1.0 || ^0.1.1",
        "clue/utf8-react": "^1.0 || ^0.1",
        "react/event-loop": "^1.2",
        "react/stream": "^1.2"
    },
    "require-dev": {
        "clue/arguments": "^2.0",
        "clue/commander": "^1.2",
        "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
    },
    "suggest": {
        "ext-mbstring": "Using ext-mbstring should provide slightly better performance for handling I/O"
    },
    "config": {
        "sort-packages": true
    },
    "autoload": {
        "psr-4": { "Clue\\React\\Stdio\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "Clue\\Tests\\React\\Stdio\\": "tests/" }
    }
}