@@ -189,14 +189,14 @@ such as Symfony projects, should use at least these values:
189
189
Optimize Composer Autoloader
190
190
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
191
191
192
- The class loader used while developing the application is optimized to find
193
- new and changed classes. In production servers, PHP files should never change,
192
+ The class loader used while developing the application is optimized to find new
193
+ and changed classes. In production servers, PHP files should never change,
194
194
unless a new application version is deployed. That's why you can optimize
195
- Composer's autoloader to scan the entire application once and build a "class map",
196
- which is a big array of the locations of all the classes and it's stored
197
- in ``vendor/composer/autoload_classmap.php ``.
195
+ Composer's autoloader to scan the entire application once and build an
196
+ optimized "class map", which is a big array of the locations of all the classes
197
+ and it's stored in ``vendor/composer/autoload_classmap.php ``.
198
198
199
- Execute this command to generate the class map (and make it part of your
199
+ Execute this command to generate the new class map (and make it part of your
200
200
deployment process too):
201
201
202
202
.. code-block :: terminal
@@ -209,8 +209,6 @@ deployment process too):
209
209
used in your application and prevents Composer from scanning the file system for
210
210
classes that are not found in the class map. (see: `Composer's autoloader optimization `_).
211
211
212
- You can also use the ``--classmap-authoritative `` option with the ``composer install `` command.
213
-
214
212
.. _profiling-applications :
215
213
216
214
Profiling Symfony Applications
0 commit comments