helpers-functions-cli/composer.json

37 lines
1.2 KiB
JSON
Raw Normal View History

2019-05-08 22:04:47 +10:00
{
"name": "pointybeard/helpers-functions-cli",
"description": "A collection of functions relating to the command-line",
"homepage": "https://github.com/pointybeard/helpers-functions-cli",
"license": "MIT",
"authors": [
{
"name": "Alannah Kearney",
"email": "hi@alannahkearney.com",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"pointybeard/helpers-cli-input": "~1.2.0",
"pointybeard/helpers-cli-colour": "~1.0",
"pointybeard/helpers-functions-strings": "~1.1",
"pointybeard/helpers-functions-flags": "~1.0",
"pointybeard/helpers-functions-arrays": "~1.0",
"pointybeard/helpers-functions-debug": "~1.0",
"pointybeard/helpers-exceptions-readabletrace": "~1.0.0"
2019-05-08 22:04:47 +10:00
},
"support": {
"issues": "https://github.com/pointybeard/helpers-functions-cli/issues",
"wiki": "https://github.com/pointybeard/helpers-functions-cli/wiki"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"pointybeard\\Helpers\\Functions\\": "src/"
},
2019-05-08 22:04:47 +10:00
"files": [
"src/Cli/Cli.php"
]
}
}