Allow search command to work without a composer.json
parent
ee7b68c049
commit
1e6633b3c3
|
@ -15,6 +15,9 @@ namespace Composer\Command;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Input\InputArgument;
|
use Symfony\Component\Console\Input\InputArgument;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Composer\Repository\CompositeRepository;
|
||||||
|
use Composer\Repository\PlatformRepository;
|
||||||
|
use Composer\Repository\ComposerRepository;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Robert Schönthal <seroscho@googlemail.com>
|
* @author Robert Schönthal <seroscho@googlemail.com>
|
||||||
|
@ -40,27 +43,32 @@ EOT
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output)
|
protected function execute(InputInterface $input, OutputInterface $output)
|
||||||
{
|
{
|
||||||
$composer = $this->getComposer();
|
// init repos
|
||||||
|
$platformRepo = new PlatformRepository;
|
||||||
// create local repo, this contains all packages that are installed in the local project
|
if ($composer = $this->getComposer(false)) {
|
||||||
$localRepo = $composer->getRepositoryManager()->getLocalRepository();
|
$localRepo = $composer->getRepositoryManager()->getLocalRepository();
|
||||||
|
$installedRepo = new CompositeRepository(array($localRepo, $platformRepo));
|
||||||
|
$repos = new CompositeRepository(array_merge(array($installedRepo), $composer->getRepositoryManager()->getRepositories()));
|
||||||
|
} else {
|
||||||
|
$output->writeln('No composer.json found in the current directory, showing packages from packagist.org');
|
||||||
|
$installedRepo = $platformRepo;
|
||||||
|
$repos = new CompositeRepository(array($installedRepo, new ComposerRepository(array('url' => 'http://packagist.org'))));
|
||||||
|
}
|
||||||
|
|
||||||
$tokens = array_map('strtolower', $input->getArgument('tokens'));
|
$tokens = array_map('strtolower', $input->getArgument('tokens'));
|
||||||
foreach ($composer->getRepositoryManager()->getRepositories() as $repository) {
|
foreach ($repos->getPackages() as $package) {
|
||||||
foreach ($repository->getPackages() as $package) {
|
foreach ($tokens as $token) {
|
||||||
foreach ($tokens as $token) {
|
if (false === ($pos = strpos($package->getName(), $token))) {
|
||||||
if (false === ($pos = strpos($package->getName(), $token))) {
|
continue;
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$state = $localRepo->hasPackage($package) ? '<info>installed</info>' : $state = '<comment>available</comment>';
|
|
||||||
|
|
||||||
$name = substr($package->getPrettyName(), 0, $pos)
|
|
||||||
. '<highlight>' . substr($package->getPrettyName(), $pos, strlen($token)) . '</highlight>'
|
|
||||||
. substr($package->getPrettyName(), $pos + strlen($token));
|
|
||||||
$output->writeln($state . ': ' . $name . ' <comment>' . $package->getPrettyVersion() . '</comment>');
|
|
||||||
continue 2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$state = $localRepo->hasPackage($package) ? '<info>installed</info>' : $state = '<comment>available</comment>';
|
||||||
|
|
||||||
|
$name = substr($package->getPrettyName(), 0, $pos)
|
||||||
|
. '<highlight>' . substr($package->getPrettyName(), $pos, strlen($token)) . '</highlight>'
|
||||||
|
. substr($package->getPrettyName(), $pos + strlen($token));
|
||||||
|
$output->writeln($state . ': ' . $name . ' <comment>' . $package->getPrettyVersion() . '</comment>');
|
||||||
|
continue 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue