File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,9 @@ Edit the ``composer.json`` file of your application and add this:
200200 }
201201 }
202202
203- Then, in your application, install the bundle as usual::
203+ Then, in your application, install the bundle as usual:
204+
205+ .. code-block :: terminal
204206
205207 $ composer update acme/blog-bundle
206208
@@ -219,12 +221,14 @@ without publishing or rebuilding archives.
219221Linking an Already Published Bundle
220222~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
221223
222- If your bundle is already public (for example, it’ s published on Packagist),
224+ If your bundle is already public (for example, it' s published on Packagist),
223225you can still develop it locally while testing it inside a Symfony application.
224226
225227In your application, replace the installed bundle with a symlink to your local
226228development copy. For example, if your bundle is installed under
227- ``vendor/acme/blog-bundle/ `` and your local copy is in ``~/Projects/AcmeBlogBundle/ ``::
229+ ``vendor/acme/blog-bundle/ `` and your local copy is in ``~/Projects/AcmeBlogBundle/ ``:
230+
231+ .. code-block :: terminal
228232
229233 $ rm -rf vendor/acme/blog-bundle/
230234 $ ln -s ~/Projects/AcmeBlogBundle/ vendor/acme/blog-bundle
You can’t perform that action at this time.
0 commit comments