1
0
Fork 0

Add dump-autoload docs

pull/1003/merge
Jordi Boggiano 2012-08-15 12:39:53 +02:00
parent 269b3481c4
commit fde3135a12
1 changed files with 19 additions and 0 deletions

View File

@ -211,6 +211,25 @@ By default the command checks for the packages on packagist.org.
from version control. from version control.
* **--dev:** Install packages listed in `require-dev`. * **--dev:** Install packages listed in `require-dev`.
## dump-autoload
If you need to update the autoloader because of new classes in a classmap
package for example, you can use "dump-autoload" to do that without having to
go through an install or update.
Additionally, it can dump an optimized autoloader that converts PSR-0 packages
into classmap ones for performance reasons. In large applications with many
classes, the autoloader can take up a substantial portion of every request's
time. Using classmaps for everything is less convenient in development, but
using this option you can still use PSR-0 for convenience and classmaps for
performance.
### Options
* **--optimize:** Convert PSR-0 autoloading to classmap to get a faster
autoloader. This is recommended especially for production, but can take
a bit of time to run so it is currently not done by default.
## help ## help
To get more information about a certain command, just use `help`. To get more information about a certain command, just use `help`.