36 lines
810 B
JSON
36 lines
810 B
JSON
{
|
|
"name": "seld/cli-prompt",
|
|
"description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
|
|
"type": "library",
|
|
"keywords": ["cli", "console", "hidden", "input", "prompt"],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=5.3"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Jordi Boggiano",
|
|
"email": "j.boggiano@seld.be"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Seld\\CliPrompt\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.x-dev"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^0.12.63"
|
|
},
|
|
"scripts": {
|
|
"phpstan": "vendor/bin/phpstan analyse"
|
|
},
|
|
"config": {
|
|
"lock": false
|
|
}
|
|
}
|