From 220ab7f4eefc6138081d86fafb17c64a07258047 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 28 Oct 2011 01:05:56 +0200 Subject: [PATCH] Comments --- src/Composer/Command/InstallCommand.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Composer/Command/InstallCommand.php b/src/Composer/Command/InstallCommand.php index 56209ba1c..f200dd81f 100644 --- a/src/Composer/Command/InstallCommand.php +++ b/src/Composer/Command/InstallCommand.php @@ -50,8 +50,9 @@ EOT { $composer = $this->getComposer(); - // create installed repo + // create local repo, this contains all packages that are installed in the local project $localRepo = $composer->getRepositoryManager()->getLocalRepository(); + // create installed repo, this contains all local packages + platform packages (php & extensions) $installedRepo = new PlatformRepository($localRepo); // creating repository pool