_complete
Options:
--shell(-s)The shell type ("bash", "fish", "zsh")
--input(-i)An array of input tokens (e.g. COMP_WORDS or argv)
--current(-c)The index of the "input" array that the cursor is in (e.g. COMP_CWORD)
--api-version(-a)The API version of the completion script
--symfony(-S)deprecated
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
about about command displays information about the current Symfony project.

The PHP section displays important configuration that could affect your application. The values might
be different between web and CLI.

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
completion completion command dumps the shell completion script required
to use shell autocompletion (currently, bash, fish, zsh completion are supported).

Static installation
-------------------

Dump the script to a global completion file and restart your shell:

/home/frank/PhpstormProjects/escapepage/bin/console completion bash | sudo tee /etc/bash_completion.d/console

Or dump the script to a local file and source it:

/home/frank/PhpstormProjects/escapepage/bin/console completion bash > completion.sh

# source the file whenever you use the project
source completion.sh

# or add this line at the end of your "~/.bashrc" file:
source /path/to/completion.sh

Dynamic installation
--------------------

Add this to the end of your shell configuration file (e.g. "~/.bashrc"):

eval "$(/home/frank/PhpstormProjects/escapepage/bin/console completion bash)"

Options:
--debugTail the completion debug log
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
shell[=null] command]]>
help help command displays help for a given command:

/home/frank/PhpstormProjects/escapepage/bin/console help list

You can also output the help in other formats by using the --format option:

/home/frank/PhpstormProjects/escapepage/bin/console help --format=xml list

To display the list of available commands, please use the list command.

Options:
--formatThe output format (txt, xml, json, or md)
--rawTo output raw command help
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]> command_name[=null]
command]]> list list command lists all commands:

/home/frank/PhpstormProjects/escapepage/bin/console list

You can also display the commands for a specific namespace:

/home/frank/PhpstormProjects/escapepage/bin/console list test

You can also output the information in other formats by using the --format option:

/home/frank/PhpstormProjects/escapepage/bin/console list --format=xml

It's also possible to get raw list of commands (useful for embedding command runner):

/home/frank/PhpstormProjects/escapepage/bin/console list --raw

Options:
--rawTo output raw command list
--formatThe output format (txt, xml, json, or md)
--shortTo skip describing commands' arguments
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
namespace[=null]
asset-map:compile asset-map:compile command compiles and dumps all the assets in
the asset mapper into the final public directory (usually public/assets).

This command is meant to be run during deployment.

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
assets:compress assets:compress command compresses the given file in Brotli, Zstandard and gzip formats.
This is especially useful to serve pre-compressed files through a web server.

The existing file will be kept. The compressed files will be created in the same directory.
The extension of the compression format will be appended to the original file name.

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
paths
assets:install assets:install command installs bundle assets into a given
directory (e.g. the public directory).

php /home/frank/PhpstormProjects/escapepage/bin/console assets:install public

A "bundles" directory will be created inside the target directory and the
"Resources/public" directory of each bundle will be copied into it.

To create a symlink to each bundle instead of copying its assets, use the
--symlink option (will fall back to hard copies when symbolic links aren't possible:

php /home/frank/PhpstormProjects/escapepage/bin/console assets:install public --symlink

To make symlink relative, add the --relative option:

php /home/frank/PhpstormProjects/escapepage/bin/console assets:install public --symlink --relative


Options:
--symlinkSymlink the assets instead of copying them
--relativeMake relative symlinks
--no-cleanupDo not remove the assets of the bundles that no longer exist
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
target[=null]
cache:clear cache:clear command clears and warms up the application cache for a given environment
and debug mode:

php /home/frank/PhpstormProjects/escapepage/bin/console cache:clear --env=dev
php /home/frank/PhpstormProjects/escapepage/bin/console cache:clear --env=prod --no-debug

Options:
--no-warmupDo not warm up the cache
--no-optional-warmersSkip optional cache warmers (faster)
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
cache:pool:clear cache:pool:clear command clears the given cache pools or cache pool clearers.

/home/frank/PhpstormProjects/escapepage/bin/console cache:pool:clear [...]

Options:
--allClear all cache pools
--excludeA list of cache pools or cache pool clearers to exclude
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
pools[=null]
cache:pool:delete cache:pool:delete deletes an item from a given cache pool.

/home/frank/PhpstormProjects/escapepage/bin/console cache:pool:delete

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
pool key
cache:pool:invalidate-tags cache:pool:invalidate-tags command invalidates tags from taggable pools. By default, all pools
have the passed tags invalidated. Pass --pool=my_pool to invalidate tags on a specific pool.

php /home/frank/PhpstormProjects/escapepage/bin/console cache:pool:invalidate-tags tag1 tag2
php /home/frank/PhpstormProjects/escapepage/bin/console cache:pool:invalidate-tags tag1 tag2 --pool=cache2 --pool=cache1

Options:
--pool(-p)The pools to invalidate on
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
tags
cache:pool:list cache:pool:list command lists all available cache pools.

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
cache:pool:prune cache:pool:prune command deletes all expired items from all pruneable pools.

/home/frank/PhpstormProjects/escapepage/bin/console cache:pool:prune

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
cache:warmup cache:warmup command warms up the cache.

Before running this command, the cache must be empty.


Options:
--no-optional-warmersSkip optional cache warmers (faster)
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
config:dump-reference config:dump-reference command dumps the default configuration for an
extension/bundle.

Either the extension alias or bundle name can be used:

php /home/frank/PhpstormProjects/escapepage/bin/console config:dump-reference framework
php /home/frank/PhpstormProjects/escapepage/bin/console config:dump-reference FrameworkBundle

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console config:dump-reference FrameworkBundle --format=json

For dumping a specific option, add its path as second argument (only available for the yaml format):

php /home/frank/PhpstormProjects/escapepage/bin/console config:dump-reference framework http_client.default_options


Options:
--formatThe output format ("yaml", "xml")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name[=null] path[=null]
debug:asset-map debug:asset-map command displays information about the Asset
Mapper for debugging purposes.

To list all configured paths (with local paths and their namespace prefixes) and
all mapped assets (with their logical path and filesystem path), run:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map

You can filter the results by providing a name to search for in the asset name
or path:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map bootstrap.js
php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map style/

To filter the assets by extension, use the --ext option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map --ext=css

To show only assets from vendor packages, use the --vendor option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map --vendor

To exclude assets from vendor packages, use the --no-vendor option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map --no-vendor

To see the full paths, use the --full option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:asset-map --full


Options:
--extFilter assets by extension (e.g. "css")
--fullWhether to show the full paths
--vendorOnly show assets from vendor packages
--no-vendorNegate the "--vendor" option
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name[=null]
debug:autowiring debug:autowiring command displays the classes and interfaces that
you can use as type-hints for autowiring:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:autowiring

You can also pass a search term to filter the list:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:autowiring log


Options:
--allShow also services that are not aliased
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
search[=null]
debug:config debug:config command dumps the current configuration for an
extension/bundle.

Either the extension alias or bundle name can be used:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:config framework
php /home/frank/PhpstormProjects/escapepage/bin/console debug:config FrameworkBundle

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:config framework --format=json

For dumping a specific option, add its path as second argument:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:config framework serializer.enabled


Options:
--resolve-envDisplay resolved environment variable values instead of placeholders
--formatThe output format ("txt", "yaml", "json")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name[=null] path[=null]
debug:container debug:container command displays all configured public services:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container

To see deprecations generated during container compilation and cache warmup, use the --deprecations option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --deprecations

To get specific information about a service, specify its name:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container validator

To get specific information about a service including all its arguments, use the --show-arguments flag:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container validator --show-arguments

To see available types that can be used for autowiring, use the --types flag:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --types

To see environment variables used by the container, use the --env-vars flag:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --env-vars

Display a specific environment variable by specifying its name with the --env-var option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --env-var=APP_ENV

Use the --tags option to display tagged public services grouped by tag:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --tags

Find all services with a specific tag by specifying the tag name with the --tag option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --tag=form.type

Use the --parameters option to display all parameters:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --parameters

Display a specific parameter by specifying its name with the --parameter option:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --parameter=kernel.debug

By default, internal services are hidden. You can display them
using the --show-hidden flag:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --show-hidden

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:container --format=json

Options:
--show-argumentsShow arguments in services
--show-hiddenShow hidden (internal) services
--tagShow all services with a specific tag
--tagsDisplay tagged services for an application
--parameterDisplay a specific parameter for an application
--parametersDisplay parameters for an application
--typesDisplay types (classes/interfaces) available in the container
--env-varDisplay a specific environment variable used in the container
--env-varsDisplay environment variables used in the container
--formatThe output format ("txt", "xml", "json", "md")
--rawTo output raw description
--deprecationsDisplay deprecations generated when compiling and warming up the container
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name[=null]
debug:dotenv /home/frank/PhpstormProjects/escapepage/bin/console debug:dotenv command displays all the environment variables configured by dotenv:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:dotenv

To get specific variables, specify its full or partial name:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:dotenv FOO_BAR


Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
filter[=null]
debug:event-dispatcher debug:event-dispatcher command displays all configured listeners:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:event-dispatcher

To get specific listeners for an event, specify its name:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:event-dispatcher kernel.request

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:event-dispatcher --format=json

Options:
--dispatcherTo view events of a specific event dispatcher
--formatThe output format ("txt", "xml", "json", "md")
--rawTo output raw description
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
event[=null]
debug:form debug:form command displays information about form types.

php /home/frank/PhpstormProjects/escapepage/bin/console debug:form

The command lists all built-in types, services types, type extensions and
guessers currently available.

php /home/frank/PhpstormProjects/escapepage/bin/console debug:form Symfony\Component\Form\Extension\Core\Type\ChoiceType
php /home/frank/PhpstormProjects/escapepage/bin/console debug:form ChoiceType

The command lists all defined options that contains the given form type,
as well as their parents and type extensions.

php /home/frank/PhpstormProjects/escapepage/bin/console debug:form ChoiceType choice_value

Use the --show-deprecated option to display form types with
deprecated options or the deprecated options of the given form type:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:form --show-deprecated
php /home/frank/PhpstormProjects/escapepage/bin/console debug:form ChoiceType --show-deprecated

The command displays the definition of the given option name.

php /home/frank/PhpstormProjects/escapepage/bin/console debug:form --format=json

The command lists everything in a machine readable json format.

Options:
--show-deprecatedDisplay deprecated options in form types
--formatThe output format ("txt", "json")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
class[=null] option[=null]
debug:messenger debug:messenger command displays all messages that can be
dispatched using the message buses:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:messenger

Or for a specific bus only:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:messenger command_bus


Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
bus[=null]
debug:router debug:router displays the configured routes:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:router

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:router --format=json

Options:
--show-controllersShow assigned controllers in overview
--show-aliasesShow aliases in overview
--formatThe output format ("txt", "xml", "json", "md")
--rawTo output raw route(s)
--methodFilter by HTTP method
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name[=null]
debug:serializer debug:serializer 'App\Entity\Dummy' command dumps the serializer groups for the dummy class.

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
class
debug:translation debug:translation command helps finding unused or missing translation
messages and comparing them with the fallback ones by inspecting the
templates and translation files of a given bundle or the default translations directory.

You can display information about bundle translations in a specific locale:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:translation en AcmeDemoBundle

You can also specify a translation domain for the search:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:translation --domain=messages en AcmeDemoBundle

You can only display missing messages:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:translation --only-missing en AcmeDemoBundle

You can only display unused messages:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:translation --only-unused en AcmeDemoBundle

You can display information about application translations in a specific locale:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:translation en

You can display information about translations in all registered bundles in a specific locale:

php /home/frank/PhpstormProjects/escapepage/bin/console debug:translation --all en


Options:
--domainThe messages domain
--only-missingDisplay only missing messages
--only-unusedDisplay only unused messages
--allLoad messages from all registered bundles
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
locale bundle[=null]
debug:validator debug:validator 'App\Entity\Dummy' command dumps the validators for the dummy class.

The debug:validator src/ command dumps the validators for the `src` directory.

Options:
--show-allShow all classes even if they have no validation constraints
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
class
error:dump
Options:
--force(-f)Force directory removal before dumping new error pages
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
path status-codes[=null]
importmap:audit --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:audit --format=json

Options:
--formatThe output format ("txt, json")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
importmap:install
Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
importmap:outdated importmap:outdated command will list the latest updates available for the 3rd party packages in importmap.php.
Versions showing in red are semver compatible versions and you should upgrading.
Versions showing in yellow are major updates that include backward compatibility breaks according to semver.

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:outdated

Or specific packages only:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:outdated

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:outdated --format=json

Options:
--formatThe output format ("txt, json")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
packages[=null]
importmap:remove importmap:remove command removes packages from the importmap.php.
If a package was downloaded into your app, the downloaded file will also be removed.

For example:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:remove lodash

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
packages
importmap:require importmap:require command adds packages to importmap.php usually
by finding a CDN URL for the given package and version.

For example:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require lodash
php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require "lodash@^4.15"

You can also require specific paths of a package:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require "chart.js/auto"

Or require one package/file, but alias its name in your import map:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require "vue/dist/vue.esm-bundler.js=vue"

Sometimes, a package may require other packages and multiple new items may be added
to the import map.

You can also require multiple packages at once:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require "lodash@^4.15" "@hotwired/stimulus"

To add an importmap entry pointing to a local file, use the path option:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require "any_module_name" --path=./assets/some_file.js

To simulate the installation, use the --dry-run option:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:require "any_module_name" --dry-run -v

When this option is enabled, this command does not perform any write operations to the filesystem.

Options:
--entrypointMake the packages an entrypoint?
--pathThe local path where the package lives relative to the project root
--dry-runSimulate the installation of the packages
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
packages
importmap:update importmap:update command will update all from the 3rd part packages
in importmap.php to their latest version, including downloaded packages.

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:update

Or specific packages only:

php /home/frank/PhpstormProjects/escapepage/bin/console importmap:update

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
packages[=null]
lint:container
Options:
--resolve-env-varsResolve environment variables and fail if one is missing.
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
lint:translations lint:translations command lint translations.

php /home/frank/PhpstormProjects/escapepage/bin/console lint:translations

Options:
--localeSpecify the locales to lint.
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
command]]>
lint:xliff lint:xliff command lints an XLIFF file and outputs to STDOUT
the first encountered syntax error.

You can validates XLIFF contents passed from STDIN:

cat filename | php /home/frank/PhpstormProjects/escapepage/bin/console lint:xliff -

You can also validate the syntax of a file:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:xliff filename

Or of a whole directory:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:xliff dirname

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:xliff dirname --format=json


Options:
--formatThe output format ("txt", "json", "github")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
filename[=null]
lint:yaml lint:yaml command lints a YAML file and outputs to STDOUT
the first encountered syntax error.

You can validates YAML contents passed from STDIN:

cat filename | php /home/frank/PhpstormProjects/escapepage/bin/console lint:yaml -

You can also validate the syntax of a file:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:yaml filename

Or of a whole directory:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:yaml dirname

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:yaml dirname --format=json

You can also exclude one or more specific files:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:yaml dirname --exclude="dirname/foo.yaml" --exclude="dirname/bar.yaml"

Or find all files in a bundle:

php /home/frank/PhpstormProjects/escapepage/bin/console lint:yaml @AcmeDemoBundle


Options:
--formatThe output format ("txt", "json", "github")
--excludePath(s) to exclude
--parse-tagsParse custom tags
--no-parse-tagsNegate the "--parse-tags" option
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
filename[=null]
mailer:test mailer:test command tests a Mailer transport by sending a simple email message:

php /home/frank/PhpstormProjects/escapepage/bin/console mailer:test to@example.com

You can also specify a specific transport:

php /home/frank/PhpstormProjects/escapepage/bin/console mailer:test to@example.com --transport=transport_name

Note that this command bypasses the Messenger bus if configured.


Options:
--fromThe sender of the message
--subjectThe subject of the message
--bodyThe body of the message
--transportThe transport to be used
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
to
messenger:consume messenger:consume command consumes messages and dispatches them to the message bus.

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume

To receive from multiple transports, pass each name:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume receiver1 receiver2

Use the --limit option to limit the number of messages received:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --limit=10

Use the --failure-limit option to stop the worker when the given number of failed messages is reached:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --failure-limit=2

Use the --memory-limit option to stop the worker if it exceeds a given memory usage limit. You can use shorthand byte values [K, M or G]:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --memory-limit=128M

Use the --time-limit option to stop the worker when the given time limit (in seconds) is reached.
If a message is being handled, the worker will stop after the processing is finished:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --time-limit=3600

Use the --bus option to specify the message bus to dispatch received messages
to instead of trying to determine it automatically. This is required if the
messages didn't originate from Messenger:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --bus=event_bus

Use the --queues option to limit a receiver to only certain queues (only supported by some receivers):

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --queues=fasttrack

Use the --no-reset option to prevent services resetting after each message (may lead to leaking services' state between messages):

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --no-reset

Use the --all option to consume from all receivers:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:consume --all

Options:
--limit(-l)Limit the number of received messages
--failure-limit(-f)The number of failed messages the worker can consume
--memory-limit(-m)The memory limit the worker can consume
--time-limit(-t)The time limit in seconds the worker can handle new messages
--sleepSeconds to sleep before asking for new messages after no messages were found
--bus(-b)Name of the bus to which received messages should be dispatched (if not passed, bus is determined automatically)
--queuesLimit receivers to only consume from the specified queues
--no-resetDo not reset container services after each message
--allConsume messages from all receivers
--keepaliveWhether to use the transport's keepalive mechanism if implemented
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
receivers[=null]
messenger:setup-transports messenger:setup-transports command setups the transports:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:setup-transports

Or a specific transport only:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:setup-transports

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
transport[=null]
messenger:stats messenger:stats command counts the messages for all the transports:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:stats

Or specific transports only:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:stats

The --format option specifies the format of the command output:

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:stats --format=json

Options:
--formatThe output format ("txt", "json")
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
transport_names[=null]
messenger:stop-workers messenger:stop-workers command sends a signal to stop any messenger:consume processes that are running.

php /home/frank/PhpstormProjects/escapepage/bin/console messenger:stop-workers

Each worker command will finish the message they are currently processing
and then exit. Worker commands are *not* automatically restarted: that
should be handled by a process control system.

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
router:match router:match shows which routes match a given request and which don't and for what reason:

php /home/frank/PhpstormProjects/escapepage/bin/console router:match /foo

or

php /home/frank/PhpstormProjects/escapepage/bin/console router:match /foo --method POST --scheme https --host symfony.com --verbose


Options:
--methodSet the HTTP method
--schemeSet the URI scheme (usually http or https)
--hostSet the URI host
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
path_info
secrets:decrypt-to-local secrets:decrypt-to-local command decrypts all secrets and copies them in the local vault.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:decrypt-to-local

When the --force option is provided, secrets that already exist in the local vault are overridden.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:decrypt-to-local --force

Options:
--force(-f)Force overriding of secrets that already exist in the local vault
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
secrets:encrypt-from-local secrets:encrypt-from-local command encrypts all locally overridden secrets to the vault.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:encrypt-from-local

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
secrets:generate-keys secrets:generate-keys command generates a new encryption key.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:generate-keys

If encryption keys already exist, the command must be called with
the --rotate option in order to override those keys and re-encrypt
existing secrets.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:generate-keys --rotate

Options:
--local(-l)Update the local vault.
--rotate(-r)Re-encrypt existing secrets with the newly generated keys.
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
secrets:list secrets:list command list all stored secrets.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:list

When the option --reveal is provided, the decrypted secrets are also displayed.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:list --reveal

Options:
--reveal(-r)Display decrypted values alongside names
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
secrets:remove secrets:remove command removes a secret from the vault.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:remove

Options:
--local(-l)Update the local vault.
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name
secrets:reveal secrets:reveal command reveals a stored secret.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:reveal

Options:
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name
secrets:set secrets:set command stores a secret in the vault.

/home/frank/PhpstormProjects/escapepage/bin/console secrets:set

To reference secrets in services.yaml or any other config
files, use "%env()%".

By default, the secret value should be entered interactively.
Alternatively, provide a file where to read the secret from:

php /home/frank/PhpstormProjects/escapepage/bin/console secrets:set filename

Use "-" as a file name to read from STDIN:

cat filename | php /home/frank/PhpstormProjects/escapepage/bin/console secrets:set -

Use --local to override secrets for local needs.

Options:
--local(-l)Update the local vault.
--random(-r)Generate a random value.
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
name file[=null]
translation:extract translation:extract command extracts translation strings from templates
of a given bundle or the default translations directory. It can display them or merge
the new ones into the translation files.

When new translation strings are found it can automatically add a prefix to the translation
message. However, if the --no-fill option is used, the --prefix
option has no effect, since the translation values are left empty.

Example running against a Bundle (AcmeBundle)

php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --dump-messages en AcmeBundle
php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --force --prefix="new_" fr AcmeBundle

Example running against default messages directory

php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --dump-messages en
php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --force --prefix="new_" fr

You can sort the output with the --sort flag:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --dump-messages --sort=asc en AcmeBundle
php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --force --sort=desc fr

You can dump a tree-like structure using the yaml format with --as-tree flag:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:extract --force --format=yaml --as-tree=3 en AcmeBundle


Options:
--prefixOverride the default prefix
--no-fillExtract translation keys without filling in values
--formatOverride the default output format
--dump-messagesShould the messages be dumped in the console
--forceShould the extract be done
--cleanShould clean not found messages
--domainSpecify the domain to extract
--sortReturn list of messages sorted alphabetically
--as-treeDump the messages as a tree-like structure: The given value defines the level where to switch to inline YAML
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
locale bundle[=null]
translation:pull translation:pull command pulls translations from the given provider. Only
new translations are pulled, existing ones are not overwritten.

You can overwrite existing translations (and remove the missing ones on local side) by using the --force flag:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:pull --force provider

Full example:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:pull provider --force --domains=messages --domains=validators --locales=en

This command pulls all translations associated with the messages and validators domains for the en locale.
Local translations for the specified domains and locale are deleted if they're not present on the provider and overwritten if it's the case.
Local translations for others domains and locales are ignored.

Options:
--forceOverride existing translations with provider ones (it will delete not synchronized messages).
--intl-icuAssociated to --force option, it will write messages in "%domain%+intl-icu.%locale%.xlf" files.
--domainsSpecify the domains to pull.
--localesSpecify the locales to pull.
--formatOverride the default output format.
--as-treeWrite messages as a tree-like structure. Needs --format=yaml. The given value defines the level where to switch to inline YAML
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
provider command]]>
translation:push translation:push command pushes translations to the given provider. Only new
translations are pushed, existing ones are not overwritten.

You can overwrite existing translations by using the --force flag:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:push --force provider

You can delete provider translations which are not present locally by using the --delete-missing flag:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:push --delete-missing provider

Full example:

php /home/frank/PhpstormProjects/escapepage/bin/console translation:push provider --force --delete-missing --domains=messages --domains=validators --locales=en

This command pushes all translations associated with the messages and validators domains for the en locale.
Provider translations for the specified domains and locale are deleted if they're not present locally and overwritten if it's the case.
Provider translations for others domains and locales are ignored.

Options:
--forceOverride existing translations with local ones (it will delete not synchronized messages).
--delete-missingDelete translations available on provider but not locally.
--domainsSpecify the domains to push.
--localesSpecify the locales to push.
--help(-h)Display help for the given command. When no command is given display help for the list command
--silentDo not output any message
--quiet(-q)Only errors are displayed. All other output is suppressed
--verbose(-v)Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version(-V)Display this application version
--ansiForce (or disable --no-ansi) ANSI output
--no-ansiNegate the "--ansi" option
--no-interaction(-n)Do not ask any interactive question
--env(-e)The Environment name.
--no-debugSwitch off debug mode.
--profileEnables profiling (requires debug).

]]>
provider command]]>