getch/composer.json

35 lines
738 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": {
"php": ">=7.4",
"ext-ffi": "*"
},
"require-dev": {
2021-01-25 12:35:32 -08:00
"friendsofphp/php-cs-fixer": "^2.18",
"jetbrains/phpstorm-stubs": "dev-master",
"phpunit/phpunit": "^9.5"
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"
}
]
}