Download the PHP package tyesty/console-bundle without Composer
On this page you can find all versions of the php package tyesty/console-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tyesty/console-bundle
More information about tyesty/console-bundle
Files in tyesty/console-bundle
Package console-bundle
Short Description Add some nice features to symfony/console - this is a fork of huttopia/console-bundle
License MIT
Informations about the package console-bundle
ConsoleBundle
Allow to exclude some commands.
For example, if you don't want to have doctrine:schema:update command in prod env: now you can :).
Add configuration to doctrine:schema:update to get queries for more than one database per connection.
Changelog
Installation
Replace parts of bin/console
:
Symfony <= 3
Symfony >= 4
Exclude commands
Hide parts of command list
When you call bin/console
or bin/console list
, you see the list of commands.
Output is cut in 4 parts:
- Symfony version, environment and debug mode state
- Help for usage syntax
- Help for options available with all commands
- Commands list
You can configure at what verbosity level each part will be shown.
Verbosity level could be 0
, 1
(-v
), 2
(-vv
) or 3
(-vvv
).
Colorise some commands
When you call bin/console
or bin/console list
, you see the list of commands.
You can change the color of each part of the command name and description:
doctrine:schema:update for more than one database
doctrine:schema:update has a major problem for us: only one database per connection is managed.
In our projects, we have more than one database per connection, so doctrine:schema:update don't show queries for all our databases.
UpdateDatabaseSchemaCommand replace doctrine:schema:update and call old doctrine:schema:update for all configured databases!
Configuration
All versions of console-bundle with dependencies
symfony/framework-bundle Version ^2.3|^3.0|^4.0|^5.0|^6.0
symfony/console Version ^2.3|^3.0|^4.0|^5.0|^6.0