quazardous/silex-console

console service provider for Silex 2

dev-master / 1.0.x-dev 2016-11-04 16:16 UTC

This package is auto-updated.

Last update: 2024-04-20 10:31:20 UTC


README

Yet another one but for Silex 2 !

Intstallation

Add quazardous/silex-console to your composer.json and register the service.

$app->register(new Quazardous\Silex\Provider\ConsoleServiceProvider);

You can customize the provider with parameters :

  • console.name
  • console.version
  • console.class

See tests/console.php for a full working minimum example.

Silex integration

The run() function triggers Silex\Application::boot() and Silex\Application::terminate();

Knp compatibility

https://github.com/KnpLabs/ConsoleServiceProvider

The provider dispatch a 'console.init' event like the Knp Console Provider. You can use it to register the commands.