Skip to content
Snippets Groups Projects

You gotta optimize your autoloader, yo.

Merged Matthew Grasmick requested to merge issue/automatic_updates-3428651:3.0.x into 3.0.x
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -445,12 +445,12 @@ abstract class StageBase implements LoggerAwareInterface {
// the installed packages yet.
if ($runtime) {
self::validateRequirements($runtime);
$command = array_merge(['require', '--no-update', '--optimize-autoloader'], $runtime);
$command = array_merge(['require', '--no-update'], $runtime);
$do_stage($command);
}
if ($dev) {
self::validateRequirements($dev);
$command = array_merge(['require', '--dev', '--no-update', '--optimize-autoloader'], $dev);
$command = array_merge(['require', '--dev', '--no-update'], $dev);
$do_stage($command);
}
Loading