getch/composer.json

38 lines
834 B
JSON

{
"name": "olivebbs/getch",
"description": "Implements _getch and _ungetch for windows and linux using ffi",
"type": "library",
"keywords": ["getch", "windows", "conio", "linux", "console", "conio.h", "hotkey", "termios"],
"require": {
"php": ">=7.4",
"ext-ffi": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Olive\\Console\\": "src/Console/"
},
"files": [
"functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Olive\\Tests\\Console\\": "tests/"
}
},
"license": "MPL-2.0",
"authors": [
{
"name": "R. Eric Wheeler",
"email": "sikofitt@gmail.com"
}
],
"conflict": {
"sikofitt/getch": "*"
}
}