From 7cf86e7ea043c4fadab0ac3480bcc667e8156bae Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sun, 25 Sep 2011 12:38:54 +0200 Subject: [PATCH] Fix installation process --- bin/composer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/composer b/bin/composer index 06d40f904..cfdb05174 100755 --- a/bin/composer +++ b/bin/composer @@ -19,8 +19,8 @@ $rm->setRepository('Packagist', new Repository\ComposerRepository('http://packag // initialize download manager $dm = new Downloader\DownloadManager($preferSource = false); $dm->setDownloader('git', new Downloader\GitDownloader()); -$dm->setDownloader('pear', new Downloader\PearDownloader()); -$dm->setDownloader('zip', new Downloader\ZipDownloader()); +//$dm->setDownloader('pear', new Downloader\PearDownloader()); +//$dm->setDownloader('zip', new Downloader\ZipDownloader()); // initialize installation manager $im = new Installer\InstallationManager();