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",
|
2021-07-29 14:37:32 +10:00
|
|
|
"minimum-stability": "stable",
|
|
|
|
|
"support": {
|
|
|
|
|
"issues": "https://github.com/pointybeard/helpers-functions-cli/issues",
|
|
|
|
|
"wiki": "https://github.com/pointybeard/helpers-functions-cli/wiki"
|
|
|
|
|
},
|
2019-05-08 22:04:47 +10:00
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Alannah Kearney",
|
|
|
|
|
"email": "hi@alannahkearney.com",
|
|
|
|
|
"homepage": "http://alannahkearney.com",
|
|
|
|
|
"role": "Developer"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"require": {
|
2019-05-20 22:16:21 +10:00
|
|
|
"php": ">=7.2",
|
2019-06-01 23:02:15 +10:00
|
|
|
"pointybeard/helpers-cli-input": "~1.2.0",
|
|
|
|
|
"pointybeard/helpers-cli-colour": "~1.0",
|
2019-05-23 17:11:59 +10:00
|
|
|
"pointybeard/helpers-functions-strings": "~1.1",
|
2019-06-01 23:02:15 +10:00
|
|
|
"pointybeard/helpers-functions-flags": "~1.0",
|
|
|
|
|
"pointybeard/helpers-functions-arrays": "~1.0",
|
2020-04-06 17:23:18 +10:00
|
|
|
"pointybeard/helpers-functions-debug": "~1.0",
|
|
|
|
|
"pointybeard/helpers-exceptions-readabletrace": "~1.0.0"
|
2019-05-08 22:04:47 +10:00
|
|
|
},
|
2021-07-29 14:37:32 +10:00
|
|
|
"require-dev": {
|
|
|
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
|
|
|
"squizlabs/php_codesniffer": "^3.0",
|
|
|
|
|
"damianopetrungaro/php-commitizen": "^0.1.0",
|
|
|
|
|
"php-parallel-lint/php-parallel-lint": "^1.0",
|
|
|
|
|
"php-parallel-lint/php-console-highlighter": "^0.5.0"
|
2019-05-08 22:04:47 +10:00
|
|
|
},
|
|
|
|
|
"autoload": {
|
2020-04-06 17:23:18 +10:00
|
|
|
"psr-4": {
|
|
|
|
|
"pointybeard\\Helpers\\Functions\\": "src/"
|
|
|
|
|
},
|
2019-05-08 22:04:47 +10:00
|
|
|
"files": [
|
|
|
|
|
"src/Cli/Cli.php"
|
|
|
|
|
]
|
2021-07-29 14:37:32 +10:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"tidy": "php-cs-fixer fix -v --using-cache=no",
|
|
|
|
|
"tidyDry": "@tidy --dry-run",
|
|
|
|
|
"test": [
|
|
|
|
|
"parallel-lint . --exclude vendor"
|
|
|
|
|
]
|
2019-05-08 22:04:47 +10:00
|
|
|
}
|
|
|
|
|
}
|