t3nma c527ad0803 [COMPOSER] Add new php-ffmpeg package | hace 4 años | |
---|---|---|
.. | ||
.puppet | hace 4 años | |
bin | hace 4 años | |
docs | hace 4 años | |
src | hace 4 años | |
tests | hace 4 años | |
.gitignore | hace 4 años | |
.travis.yml | hace 4 años | |
LICENSE | hace 4 años | |
README.md | hace 4 años | |
Vagrantfile | hace 4 años | |
composer.json | hace 4 años | |
composer.lock | hace 4 años | |
example.php | hace 4 años | |
phpunit.xml.dist | hace 4 años |
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\GreetCommand());
$app->run();
Cilex works with PHP 5.3.3 or later and is heavily inspired on the Silex web micro-framework by Fabien Potencier.
git clone
this repository.curl -s https://getcomposer.org/installer | php
php composer.phar install
php ./compile
curl -s https://getcomposer.org/installer | php
php composer.phar require cilex/cilex dev-master
run.php
file<?php
if (!$loader = include __DIR__.'/vendor/autoload.php') {
die('You must set up the project dependencies.');
}
$app = new \Cilex\Application('Cilex');
$app->command(new \Cilex\Command\GreetCommand());
$app->run();
php run.php
Cilex is licensed under the MIT license.
Q: How do I pass configuration into the application?
A: You can do this by adding the following line, where $configPath is the path to the configuration file you want to use:
$app->register(new \Cilex\Provider\ConfigServiceProvider(), array('config.path' => $configPath));
The formats currently supported are: YAML, XML and JSON