The VcsDownloader outputs a blank line between each dependency: https://github.com/composer/composer/blob/745dcbce3317f7119575c39cef2cb601f9c5ffcf/src/Composer/Downloader/VcsDownloader.php#L80 This write makes output consistent.
@@ -101,6 +101,8 @@ class FileDownloader implements DownloaderInterface
}
+
+ $this->io->write('');
protected function doDownload(PackageInterface $package, $path, $url)