This is old! check http://github.com/hanken/FRNK-ShellExtensionBundle
The FRNKClieBundle extends the symfony 2 console with a php cli and some additional commands.
[CliBundle]
git=http://github.com/hanken/CliBundle.git
target=/bundles/FRNK/CliBundle
run php bin/vendors install
to download and install the CliBundle
add the following to your app/autoload.php
# .../Symfony/app/autoload.php
$loader->registerNamespaces(array(
//....
'FRNK' => __DIR__.'/../vendor/bundles',
//...
));
Add CliBundle to the registerBundles()
method of your application kernel:
public function registerBundles()
{
return array(
//....
new FRNK\CliBundle\FRNKCliBundle(),
);
}
nothing to configure