From 74d7fdfcef43b1f8ec83fab2917bafea32489339 Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Sat, 15 Oct 2011 14:34:16 +0200 Subject: [PATCH] Fix missing support for the symfony-bundle package type. Using Composer\Installer\LibraryInstaller to handle the installation of packages that specify the "symfony-bundle" type is just a temporary solution while waiting to better define how packages shipping Symfony bundles should be treated. --- bin/composer | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/composer b/bin/composer index e2d36b3c9..4cf1eec23 100755 --- a/bin/composer +++ b/bin/composer @@ -27,6 +27,7 @@ $dm->setDownloader('zip', new Downloader\ZipDownloader()); // initialize installation manager $im = new Installer\InstallationManager(); $im->setInstaller('library', new Installer\LibraryInstaller('vendor', $dm, $rm->getLocalRepository())); +$im->setInstaller('symfony-bundle', new Installer\LibraryInstaller('vendor/bundles', $dm, $rm->getLocalRepository())); // load package $loader = new Package\Loader\JsonLoader();