https://github.com/lemonphp/cli
:+1: A simple command line application framework to develop simple tools based on Symfony2 components
https://github.com/lemonphp/cli
Last synced: 9 days ago
JSON representation
:+1: A simple command line application framework to develop simple tools based on Symfony2 components
- Host: GitHub
- URL: https://github.com/lemonphp/cli
- Owner: lemonphp
- License: mit
- Created: 2016-02-18T11:07:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-03T02:35:19.000Z (over 9 years ago)
- Last Synced: 2025-07-27T06:35:17.338Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Package lemonphp/cli
===
[](https://travis-ci.org/lemonphp/cli)
[](https://coveralls.io/github/lemonphp/cli?branch=master)
A a simple command line application framework to develop simple tools based on Symfony2 components
Requirements
---
* php >=5.5.9
* pimple/pimple ^3.0
* symfony/console ^3.0
* symfony/event-dispatcher ^3.0
Installation
---
```shell
$ composer require lemonphp/cli
```
Usage
---
```php
$app = new \Lemon\Cli\App('Simple CLI app', '1.0.1');
$app->addCommand(new YourCommand());
$app->run();
```
Changelog
---
See [CHANGELOG.md](https://github.com/lemonphp/cli/blob/master/CHANGELOG.md)
Contributing
---
Please report any bugs or add pull requests on [Github Issues](https://github.com/lemonphp/cli/issues).
License
---
This project is released under the MIT License.