getch/composer.json

34 lines
682 B
JSON
Raw Normal View History

2020-12-22 14:19:32 -08:00
{
2022-05-17 10:29:20 -07:00
"name": "olivebbs/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",
"phpunit/phpunit": "^9.5"
2020-12-22 14:19:32 -08:00
},
"autoload": {
"psr-4": {
2022-05-17 10:29:20 -07:00
"Olive\\Console\\": "src/Console/"
2020-12-22 14:19:32 -08:00
},
"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": {
2022-05-17 10:29:20 -07:00
"Olive\\Tests\\Console\\": "tests/"
2021-01-25 12:35:32 -08:00
}
},
2020-12-22 14:19:32 -08:00
"license": "MPL-2.0",
"authors": [
{
"name": "R. Eric Wheeler",
"email": "sikofitt@gmail.com"
}
]
}