Skip to content

Commit 7dcce1b

Browse files
committed
minor symfony#4585 When explaining how to install dependencies for running unit tests, (carlosbuenosvinos)
This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes symfony#4585). Discussion ---------- When explaining how to install dependencies for running unit tests, | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | symfony#4584 Commits ------- 512632e When explaining how to install dependencies for running unit tests, there are references to "--dev" composer parameter that is the current default value.
2 parents 1fa0f59 + 512632e commit 7dcce1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contributing/code/tests.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Step 2: Install vendors
4141

4242
.. code-block:: bash
4343
44-
$ php composer.phar --dev install
44+
$ php composer.phar install
4545
4646
.. note::
4747

@@ -56,14 +56,14 @@ Step 2: Install vendors
5656
.. code-block:: bash
5757
5858
$ php installer
59-
$ php composer.phar --dev install
59+
$ php composer.phar install
6060
6161
After installation, you can update the vendors to their latest version with
6262
the follow command:
6363

6464
.. code-block:: bash
6565
66-
$ php composer.phar --dev update
66+
$ php composer.phar update
6767
6868
Running
6969
-------

0 commit comments

Comments
 (0)