@@ -20,11 +20,13 @@ Before creating your first Symfony application you must:
20
20
* Install PHP 7.2.5 or higher and these PHP extensions (which are installed and
21
21
enabled by default in most PHP 7 installations): `Ctype `_, `iconv `_, `JSON `_,
22
22
`PCRE `_, `Session `_, `SimpleXML `_, and `Tokenizer `_;
23
- * `Install Composer `_, which is used to install PHP packages;
24
- * `Install Symfony `_, which creates in your computer a binary called ``symfony ``
25
- that provides all the tools you need to develop your application locally.
23
+ * `Install Composer `_, which is used to install PHP packages.
26
24
27
- The ``symfony `` binary provides a tool to check if your computer meets these
25
+ Optionally, you can also `install Symfony CLI `_. This creates a binary called
26
+ ``symfony `` that provides all the tools you need to develop and run your
27
+ Symfony application locally.
28
+
29
+ The ``symfony `` binary also provides a tool to check if your computer meets all
28
30
requirements. Open your console terminal and run this command:
29
31
30
32
.. code-block :: terminal
@@ -51,7 +53,7 @@ The only difference between these two commands is the number of packages
51
53
installed by default. The ``--full `` option installs all the packages that you
52
54
usually need to build web applications, so the installation size will be bigger.
53
55
54
- If you're not using the Symfony binary, run these commands to create the new
56
+ If you're not using the Symfony binary, run these commands to create the new
55
57
Symfony application using Composer:
56
58
57
59
.. code-block :: terminal
@@ -207,7 +209,7 @@ command to unpack the already installed packs: ``composer unpack PACK_NAME``
207
209
Checking Security Vulnerabilities
208
210
---------------------------------
209
211
210
- The ``symfony `` binary created when you `install Symfony `_ provides a command to
212
+ The ``symfony `` binary created when you `install Symfony CLI `_ provides a command to
211
213
check whether your project's dependencies contain any known security
212
214
vulnerability:
213
215
@@ -291,8 +293,8 @@ Learn More
291
293
292
294
.. _`Stellar Development with Symfony` : https://symfonycasts.com/screencast/symfony
293
295
.. _`Install Composer` : https://getcomposer.org/download/
294
- .. _`Install Symfony` : https://symfony.com/download
295
- .. _`install Symfony` : https://symfony.com/download
296
+ .. _`Install Symfony CLI ` : https://symfony.com/download
297
+ .. _`install Symfony CLI ` : https://symfony.com/download
296
298
.. _`The Symfony Demo Application` : https://github.com/symfony/demo
297
299
.. _`Symfony Flex` : https://github.com/symfony/flex
298
300
.. _`PHP security advisories database` : https://github.com/FriendsOfPHP/security-advisories
0 commit comments