33 lines
641 B
JSON
33 lines
641 B
JSON
{
|
|
"name": "olivebbs/getch",
|
|
"description": "Implements _getch and _ungetch for windows and linux using ffi",
|
|
"type": "library",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"ext-ffi": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.6"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Sikofitt\\Console\\": "src/Console/"
|
|
},
|
|
"files": [
|
|
"functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Sikofitt\\Tests\\Console\\": "tests/"
|
|
}
|
|
},
|
|
"license": "MPL-2.0",
|
|
"authors": [
|
|
{
|
|
"name": "R. Eric Wheeler",
|
|
"email": "sikofitt@gmail.com"
|
|
}
|
|
]
|
|
}
|