Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 886 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 886 Bytes

Cilex, a simple Command Line Interface framework

Cilex is a simple command line application framework to develop simple tools based on Symfony2 components:

<?php
require_once __DIR__.'/cilex.phar';

$app = new \Cilex\Application('Cilex');
$app->command(new \Cilex\Command\DemoGreetCommand());
$app->run();

Cilex works with PHP 5.3.2 or later and is heavily inspired on the Silex web micro-framework by Fabien Potencier.

License

Cilex is licensed under the MIT license.