An open API service indexing awesome lists of open source software.

https://github.com/g4code/commando

PHP command-line interface
https://github.com/g4code/commando

Last synced: 3 months ago
JSON representation

PHP command-line interface

Awesome Lists containing this project

README

          

commando
======

> commando - [php](http://php.net) library

## Install

```sh
composer require g4code/commando
```

[Composer](http://getcomposer.org/)

[g4code/commando](https://packagist.org/packages/g4code/commando)

## Usage

```php
version('x.x.x');
$cli->option()->short("p")
->long("param")
->desc('param name description');

echo $cli->value('param'); // outputs param option value
```

## Development

### Install dependencies

$ make install

### Run tests

$ make test

## License

(The MIT License)
see LICENSE file for details...