1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 09:02:59 +00:00

fixed create-project with json file

the create-project command tried to instantiate a FilesystemRepository
with the json file as string instead of an JsonFile instance
This commit is contained in:
Michael Wallner 2012-03-16 08:40:18 +01:00
parent 3fce97da89
commit f65fe27097

View file

@ -22,6 +22,7 @@ use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Composer\Json\JsonFile;
/**
* Install a package as new project into new directory.
@ -85,7 +86,7 @@ EOT
if (null === $repositoryUrl) {
$sourceRepo = new ComposerRepository(array('url' => 'http://packagist.org'));
} elseif (".json" === substr($repositoryUrl, -5)) {
$sourceRepo = new FilesystemRepository($repositoryUrl);
$sourceRepo = new FilesystemRepository(new JsonFile($repositoryUrl));
} elseif (0 === strpos($repositoryUrl, 'http')) {
$sourceRepo = new ComposerRepository(array('url' => $repositoryUrl));
} else {