The PHP micro-framework for command line tools base Symfony Components

v0.2.0 2016-06-02 10:46 UTC

This package is auto-updated.

Last update: 2024-07-08 07:30:37 UTC


README

Package lemonphp/cli

Build Status Coverage Status

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

$ composer require lemonphp/cli

Usage

$app = new \Lemon\Cli\App('Simple CLI app', '1.0.1');
$app->addCommand(new YourCommand());
$app->run();

Changelog

See CHANGELOG.md

Contributing

Please report any bugs or add pull requests on Github Issues.

License

This project is released under the MIT License.