34 lines
682 B
JSON
34 lines
682 B
JSON
{
|
|
"name": "olivebbs/getch",
|
|
"description": "Implements _getch and _ungetch for windows and linux using ffi",
|
|
"type": "library",
|
|
"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"
|
|
}
|
|
]
|
|
}
|