ulrichsg/getopt-php
Lightweight PHP library for parsing command-line options and arguments (getopt). Define short/long flags, required/optional values, and get a clean result for building CLI tools. No framework dependencies, simple API, supports help/usage output.
The recommended way of installing GetOpt.php is to use Composer.
$ /path/to/composer require ulrichsg/getopt-php
Replace ^3.0 by the release number you want to use (a list of releases is available on
Packagist).
Add it to your composer.json file like this:
{
"require": {
"ulrichsg/getopt-php": "^3.2"
}
}
Afterwards update the package or all packages:
# update only getopt-php
$ /path/to/composer update ulrichsg/getopt-php
# update all packages
$ /path/to/composer update
If not using Composer, you can download the desired release from GitHub and integrate it into your application manually. GetOpt.php does not have any external dependencies.
In this case you have to configure an autoload mechanism or load all files manually too.
How can I help you explore Laravel packages today?