Get support for KnpLabs/ConsoleServiceProvider
If you're new to LTH, please see our FAQ for more information on what it is we do.
Support Options
Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:
View Open IssuesTake a look to see if anyone else has experienced the same issue as you and if they managed to solve it.
Open an IssueMake sure to read any relevant guidelines for opening issues on this repo before posting a new issue.
Sponsor directlyCheck out the page and see if there are any options to sponsor this project or it's developers directly.
KnpLabs/ConsoleServiceProvider
DEPRECATED
Unfortunately we decided to not maintain this project anymore (see why). If you want to mark another package as a replacement for this one please send an email to hello@knplabs.com.
ConsoleServiceProvider
Provides a Symfony\Component\Console
based console for Silex 2.x.
Installation
Add knplabs/console-service-provider
to your composer.json
and register the service provider:
composer require knplabs/console-service-provider
use Knp\Provider\ConsoleServiceProvider;
$app->register(new ConsoleServiceProvider());
You can now copy the console
executable from the bin
folder to whatever
place you see fit, and tweak it to your needs.
You will need a way to fetch your silex application, the most common way is to return it from your bootstrap file:
use Knp\Provider\ConsoleServiceProvider;
use Silex\Application;
$app = new Application();
$app->register(new ConsoleServiceProvider());
$app->register(new SomeOtherServiceProvider());
return $app;
For the rest of this documentation, we will assume you do have a bin
directory, so the console
executable will be located at bin/console
.
Usage
Use the console just like any Symfony\Component\Console
based console:
$ bin/console my:command
or on Windows:
$ php bin/console my:command
Configuration parameters
Parameter | Default | Description |
---|---|---|
console.name (string) |
Silex console | Name of your console application |
console.version (string) |
UNKNOWN | Version of your console application |
console.project_directory (string) |
(auto-detected) | Your project's directory path. The default value should work, assuming the provider is installed in vendor/knplabs/console-service-provider |
console.class (string) |
Knp\Console\Application | Class name of the console service |
console.boot_in_constructor (bool) |
false | Whether the console should boot Silex when loaded (set it to true if you depend on a bug that was fixed in 2.1) |
console.command.ids (array) |
array() | Console commands registered as services |
Default commands
The service provider will register the following commands if the corresponding Symfony components are installed:
- From
symfony/twig-bridge
, thelint:twig
anddebug:twig
commands - From
symfony/yaml
, thelint:yaml
command
Web-server-bundle support
The WebServerServiceProvider
will register the commands provided by symfony/web-server-bundle
.
$app = new Silex\Application();
$app->register(new Knp\Provider\ConsoleServiceProvider());
$app->register(new Knp\Provider\WebServerServiceProvider(), array(
// Folder that contains your front controller/public files
'web_server.document_root' => __DIR__.'/../public',
));
The server commands expect your front controller to be located in your
document root and be called app_dev.php
, app.php
, index_dev.php
or index.php
.
For more information, please consult the Symfony documentation.
Recipes
Our Mission
We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2