Skip to content

Commit e74ff93

Browse files
committed
-
1 parent 0282da6 commit e74ff93

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

bundles.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff 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.
219221
Linking an Already Published Bundle
220222
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
221223

222-
If your bundle is already public (for example, its published on Packagist),
224+
If your bundle is already public (for example, it's published on Packagist),
223225
you can still develop it locally while testing it inside a Symfony application.
224226

225227
In your application, replace the installed bundle with a symlink to your local
226228
development 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

0 commit comments

Comments
 (0)