mparaiso / consoleserviceprovider
Symfony Console integration for Silex
Installs: 638
Dependents: 5
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Language:JavaScript
pkg:composer/mparaiso/consoleserviceprovider
Requires
- php: >=5.3.3
- silex/silex: *@dev
- symfony/console: 2.*
This package is not auto-updated.
Last update: 2025-10-25 19:19:53 UTC
README
Symfony Console integration for Silex
author : MParaiso contact: mparaiso@online.fr
status: Work in Progress
USAGE
    $app = new \Silex\Application();
    $app->register(new ConsoleServiceProvider);
    # in your console application file :
    $this->app["console"]->run();
    # access silex app from a command
    $app = $this->getHelper("app")->getApplication();
###Services
***console*** : Symfony\Component\Console\Application
***console.helperset*** : Symfony\Component\Console\Helper\HelperSet
TODO
- list services in alphabetic order in ListServicesCommand
CHANGELOG
0.0.6@dev app:router:debug command added