Skip to content

Commit 284476d

Browse files
committed
Note that symfony/process is a requirement for running tests
1 parent 64c4acd commit 284476d

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

doc/testing-your-application.rst

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,14 @@ Configuration
5757
'''''''''''''
5858

5959
By default, the ``VarnishTestCase`` starts and stops a Varnish server for you.
60-
All you have to do is to set your Varnish configuration (VCL) file.
60+
Make sure ``symfony/process`` is available in your project:
61+
62+
.. code-block:: bash
63+
64+
$ composer require symfony/process
65+
66+
Then set your Varnish configuration (VCL) file. All available configuration
67+
parameters are shown below.
6168

6269
======================= ========================= ================================================== ============================================
6370
Constant Getter Default Description
@@ -84,10 +91,16 @@ NginxTestCase
8491
Configuration
8592
'''''''''''''
8693

87-
By default, the ``NginxTestCase`` starts and stops NGINX server for you and deletes
88-
all cached contents. You have to set your NGINX configuration file.
94+
By default, the ``NginxTestCase`` starts and stops the NGINX server for you and
95+
deletes all cached contents. Make sure ``symfony/process`` is available in your
96+
project:
97+
98+
.. code-block:: bash
99+
100+
$ composer require symfony/process
89101
90-
These are all the configurations you can change
102+
You have to set your NGINX configuration file. All available configuration
103+
parameters are shown below.
91104

92105
======================= ========================= ================================================ ==========================================
93106
Constant Getter Default Description

0 commit comments

Comments
 (0)