View the Project on GitHub getopt-php/getopt-php
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.