Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 148 |
lars |
1 |
# sebastian/cli-parser
|
|
|
2 |
|
|
|
3 |
Library for parsing `$_SERVER['argv']`, extracted from `phpunit/phpunit`.
|
|
|
4 |
|
|
|
5 |
## Installation
|
|
|
6 |
|
|
|
7 |
You can add this library as a local, per-project dependency to your project using [Composer](https://getcomposer.org/):
|
|
|
8 |
|
|
|
9 |
```
|
|
|
10 |
composer require sebastian/cli-parser
|
|
|
11 |
```
|
|
|
12 |
|
|
|
13 |
If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
|
|
|
14 |
|
|
|
15 |
```
|
|
|
16 |
composer require --dev sebastian/cli-parser
|
|
|
17 |
```
|