mirror of
https://github.com/n3w/helpers-cli-input.git
synced 2025-12-19 12:43:23 +00:00
Initial commit
This commit is contained in:
commit
0620d00f08
24 changed files with 1054 additions and 0 deletions
35
composer.json
Normal file
35
composer.json
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"name": "pointybeard/helpers-cli-input",
|
||||
"version": "1.0.0",
|
||||
"description": "Collection of classes for handling argv (and other) input when calling command-line scripts. Helps with parsing, collecting and validating arguments, options, and flags.",
|
||||
"homepage": "https://github.com/pointybeard/helpers-cli-input",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alannah Kearney",
|
||||
"email": "hi@alannahkearney.com",
|
||||
"homepage": "http://alannahkearney.com",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.2",
|
||||
"pointybeard/helpers-foundation-factory": "~1.0",
|
||||
"pointybeard/helpers-functions-flags": "~1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^8",
|
||||
"pointybeard/helpers-functions-strings": "~1.0",
|
||||
"pointybeard/helpers-cli-colour": "~1.0"
|
||||
},
|
||||
"support": {
|
||||
"issues": "https://github.com/pointybeard/helpers-cli-input/issues",
|
||||
"wiki": "https://github.com/pointybeard/helpers-cli-input/wiki"
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"pointybeard\\Helpers\\Cli\\": "src/"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue