@@ -10,7 +10,7 @@ is not a new Symfony version, but a tool that replaces and improves the
10
10
Symfony Flex **automates the most common tasks of Symfony applications **, such
11
11
as installing and removing bundles and other Composer dependencies. Symfony
12
12
Flex works for Symfony 3.3 and newer versions. Starting from Symfony 4.0, Flex
13
- should be used by default, but it is optional to use .
13
+ should be used by default, but it is still optional .
14
14
15
15
How Does Flex Work
16
16
------------------
@@ -48,8 +48,8 @@ In the above example, Symfony Flex asks about the ``mailer`` package and the
48
48
Symfony Flex server detects that ``mailer `` is in fact an alias for
49
49
SwiftmailerBundle and returns the "recipe" for it.
50
50
51
- Flex keeps tracks of which recipes it installed in a ``symfony.lock `` file that
52
- must be committed in your code repository.
51
+ Flex keeps tracks of the recipes it installed in a ``symfony.lock `` file, which
52
+ must be committed to your code repository.
53
53
54
54
Symfony Flex Recipes
55
55
~~~~~~~~~~~~~~~~~~~~
@@ -76,7 +76,7 @@ SwiftmailerBundle:
76
76
The ``aliases `` option allows Flex to install packages using short and easy to
77
77
remember names (``composer require mailer `` vs ``composer require
78
78
symfony/swiftmailer-bundle ``). The ``bundles `` option tells Flex in which
79
- environments should this bundle be enabled automatically (``all `` in this
79
+ environments this bundle should be enabled automatically (``all `` in this
80
80
case). The ``env `` option makes Flex to add new environment variables to the
81
81
application. Finally, the ``copy-from-recipe `` option allows the recipe to copy
82
82
files and directories into your application.
@@ -111,8 +111,8 @@ Using Symfony Flex in New Applications
111
111
112
112
Symfony has published a new "skeleton" project, which is a minimal Symfony
113
113
project recommended to create new applications. This "skeleton" already
114
- includes Symfony Flex as a dependency, so you can create a new Flex-enabled
115
- Symfony application executing the following command:
114
+ includes Symfony Flex as a dependency. This means you can create a new Flex-enabled
115
+ Symfony application by executing the following command:
116
116
117
117
.. code-block :: terminal
118
118
0 commit comments