mirror of
https://github.com/n3w/helpers-cli-input.git
synced 2025-12-19 12:43:23 +00:00
Updated README, composer.json, and CHANGELOG for 1.0.2 release
This commit is contained in:
parent
25f3fb8014
commit
6e987bb4eb
3 changed files with 14 additions and 9 deletions
|
|
@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
**View all [Unreleased][] changes here**
|
**View all [Unreleased][] changes here**
|
||||||
|
|
||||||
|
## [1.0.2][]
|
||||||
|
#### Fixed
|
||||||
|
- Fixed `InputCollection::getArgumentsByIndex()` so it returns NULL if the index does not exist instead of throwing an E_NOTICE message
|
||||||
|
|
||||||
## [1.0.1][]
|
## [1.0.1][]
|
||||||
#### Changed
|
#### Changed
|
||||||
- Updated example to use `Cli\manpage()` provided by the `pointybeard/helpers-functions-cli` package
|
- Updated example to use `Cli\manpage()` provided by the `pointybeard/helpers-functions-cli` package
|
||||||
|
|
@ -13,5 +17,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
#### Added
|
#### Added
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.1...integration
|
[Unreleased]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.2...integration
|
||||||
|
[1.0.2]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.1...1.0.2
|
||||||
[1.0.1]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.0...1.0.1
|
[1.0.1]: https://github.com/pointybeard/helpers-functions-cli/compare/1.0.0...1.0.1
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# PHP Helpers: Command-line Input and Input Type Handlers
|
# PHP Helpers: Command-line Input and Input Type Handlers
|
||||||
|
|
||||||
- Version: v1.0.1
|
- Version: v1.0.2
|
||||||
- Date: May 20 2019
|
- Date: May 23 2019
|
||||||
- [Release notes](https://github.com/pointybeard/helpers-cli-input/blob/master/CHANGELOG.md)
|
- [Release notes](https://github.com/pointybeard/helpers-cli-input/blob/master/CHANGELOG.md)
|
||||||
- [GitHub repository](https://github.com/pointybeard/helpers-cli-input)
|
- [GitHub repository](https://github.com/pointybeard/helpers-cli-input)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pointybeard/helpers-cli-input",
|
"name": "pointybeard/helpers-cli-input",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"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.",
|
"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",
|
"homepage": "https://github.com/pointybeard/helpers-cli-input",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
@ -14,14 +14,14 @@
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2",
|
"php": ">=7.2",
|
||||||
"pointybeard/helpers-foundation-factory": "~1.0",
|
"pointybeard/helpers-foundation-factory": "~1",
|
||||||
"pointybeard/helpers-functions-flags": "~1.0"
|
"pointybeard/helpers-functions-flags": "~1"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^8",
|
"phpunit/phpunit": "^8",
|
||||||
"pointybeard/helpers-functions-strings": "~1.0",
|
"pointybeard/helpers-functions-strings": "^1",
|
||||||
"pointybeard/helpers-cli-colour": "~1.0",
|
"pointybeard/helpers-cli-colour": "^1",
|
||||||
"pointybeard/helpers-functions-cli": "~1.1"
|
"pointybeard/helpers-functions-cli": "^1"
|
||||||
},
|
},
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/pointybeard/helpers-cli-input/issues",
|
"issues": "https://github.com/pointybeard/helpers-cli-input/issues",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue