@@ -18,13 +18,13 @@ tight integration with a third-party library called `Doctrine`_.
1818Installing Doctrine
1919-------------------
2020
21- First, install Doctrine, as well as the MakerBundle, which will help generate some
22- code:
21+ First, install Doctrine support via the ORM pack , as well as the MakerBundle,
22+ which will help generate some code:
2323
2424.. code-block :: terminal
2525
26- composer require doctrine
27- composer require maker --dev
26+ $ composer require symfony/orm-pack
27+ $ composer require symfony/ maker-bundle --dev
2828
2929 Configuring the Database
3030~~~~~~~~~~~~~~~~~~~~~~~~
@@ -468,8 +468,8 @@ the :ref:`doctrine-queries` section.
468468 If the number of database queries is too high, the icon will turn yellow to
469469 indicate that something may not be correct. Click on the icon to open the
470470 Symfony Profiler and see the exact queries that were executed. If you don't
471- see the web debug toolbar, try running ``composer require profiler `` to install
472- it.
471+ see the web debug toolbar, try running ``composer require --dev symfony/ profiler-pack ``
472+ to install it.
473473
474474Automatically Fetching Objects (ParamConverter)
475475-----------------------------------------------
@@ -479,7 +479,7 @@ for you automatically! First, install the bundle in case you don't have it:
479479
480480.. code-block :: terminal
481481
482- $ composer require annotations
482+ $ composer require sensio/framework-extra-bundle
483483
484484 Now, simplify your controller::
485485
0 commit comments