getch/composer.json

33 lines
641 B
JSON
Raw Normal View History

2020-12-22 14:19:32 -08:00
{
"name": "sikofitt/getch",
2021-01-25 12:35:32 -08:00
"description": "Implements _getch and _ungetch for windows and linux using ffi",
2020-12-22 14:19:32 -08:00
"type": "library",
"require": {
2024-07-18 12:34:40 -07:00
"php": "^8.2",
2020-12-22 14:19:32 -08:00
"ext-ffi": "*"
},
"require-dev": {
2024-07-18 12:34:40 -07:00
"phpunit/phpunit": "^9.6"
2020-12-22 14:19:32 -08:00
},
"autoload": {
"psr-4": {
"Sikofitt\\Console\\": "src/Console/"
},
"files": [
2021-01-25 12:35:32 -08:00
"functions.php"
2020-12-22 14:19:32 -08:00
]
},
2021-01-25 12:35:32 -08:00
"autoload-dev": {
"psr-4": {
"Sikofitt\\Tests\\Console\\": "tests/"
}
},
2020-12-22 14:19:32 -08:00
"license": "MPL-2.0",
"authors": [
{
"name": "R. Eric Wheeler",
"email": "sikofitt@gmail.com"
}
]
}