├── ChangeLog.md ├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json └── src ├── Parser.php └── exceptions ├── AmbiguousOptionException.php ├── Exception.php ├── OptionDoesNotAllowArgumentException.php ├── RequiredOptionArgumentMissingException.php └── UnknownOptionException.php /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/composer.json -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/exceptions/AmbiguousOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/src/exceptions/AmbiguousOptionException.php -------------------------------------------------------------------------------- /src/exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/src/exceptions/Exception.php -------------------------------------------------------------------------------- /src/exceptions/OptionDoesNotAllowArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/src/exceptions/OptionDoesNotAllowArgumentException.php -------------------------------------------------------------------------------- /src/exceptions/RequiredOptionArgumentMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/src/exceptions/RequiredOptionArgumentMissingException.php -------------------------------------------------------------------------------- /src/exceptions/UnknownOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/cli-parser/HEAD/src/exceptions/UnknownOptionException.php --------------------------------------------------------------------------------