diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index 93c4f31345b..3959b7e0ff2 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -4,18 +4,23 @@ FrameworkBundle Configuration ("framework") =========================================== -The FrameworkBundle contains most of the "base" framework functionality -and can be configured under the ``framework`` key in your application -configuration. When using XML, you must use the -``http://symfony.com/schema/dic/symfony`` namespace. +The FrameworkBundle defines the main framework configuration, from sessions and +translations to forms, validation, routing and more. All these options are +configured under the ``framework`` key in your application configuration. -This includes settings related to sessions, translation, forms, validation, -routing and more. +.. code-block:: terminal -.. tip:: + # displays the default config values defined by Symfony + $ php bin/console config:dump framework + + # displays the actual config values used by your application + $ php bin/console debug:config framework + +.. note:: - The XSD schema is available at - ``http://symfony.com/schema/dic/symfony/symfony-1.0.xsd``. + When using XML, you must use the ``http://symfony.com/schema/dic/symfony`` + namespace and the related XSD schema is available at: + ``http://symfony.com/schema/dic/symfony/symfony-1.0.xsd`` Configuration -------------