@@ -193,12 +193,12 @@ In practice, many Symfony applications rely on the independent
193193`Doctrine project `_ to define their model using entities and repositories.
194194
195195Doctrine support is not enabled by default in Symfony. So to use Doctrine
196- as shown in the examples below you will need to install `Doctrine ORM support `_
196+ as shown in the examples below you will need to install:doc: `Doctrine ORM support < /doctrine >`
197197by executing the following command:
198198
199199..code-block ::terminal
200200
201- $ composer require" symfony/orm-pack"
201+ $ composer require symfony/orm-pack
202202
203203 Just like with business logic, we recommend storing Doctrine entities in the
204204AppBundle.
@@ -310,7 +310,7 @@ the following command to install the Doctrine fixtures bundle:
310310
311311..code-block ::terminal
312312
313- $ composer require" doctrine/doctrine-fixtures-bundle"
313+ $ composer require doctrine/doctrine-fixtures-bundle
314314
315315 Then, enable the bundle in ``AppKernel.php ``, but only for the ``dev `` and
316316``test `` environments::