t3nma c527ad0803 [COMPOSER] Add new php-ffmpeg package | преди 4 години | |
---|---|---|
.. | ||
.puppet | преди 4 години | |
bin | преди 4 години | |
docs | преди 4 години | |
src | преди 4 години | |
tests | преди 4 години | |
.gitignore | преди 4 години | |
.travis.yml | преди 4 години | |
LICENSE | преди 4 години | |
README.md | преди 4 години | |
Vagrantfile | преди 4 години | |
composer.json | преди 4 години | |
composer.lock | преди 4 години | |
example.php | преди 4 години | |
phpunit.xml.dist | преди 4 години |
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