mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-08-19 08:38:17 +02:00
38 lines
1.2 KiB
JSON
38 lines
1.2 KiB
JSON
{
|
|
"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/" }
|
|
}
|
|
}
|