mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Remove filterPackages and add RepositoryInterface::search, refactor all commands to use new methods and remove all usage of the full package list for Composer repositories that support providers, fixes #1646
This commit is contained in:
parent
095852933e
commit
be861f090a
11 changed files with 233 additions and 205 deletions
|
@ -42,7 +42,7 @@ class ComposerRepositoryTest extends TestCase
|
|||
);
|
||||
|
||||
$repository
|
||||
->expects($this->once())
|
||||
->expects($this->exactly(2))
|
||||
->method('loadRootServerFile')
|
||||
->will($this->returnValue($repoPackages));
|
||||
|
||||
|
@ -50,7 +50,7 @@ class ComposerRepositoryTest extends TestCase
|
|||
$stubPackage = $this->getPackage('stub/stub', '1.0.0');
|
||||
|
||||
$repository
|
||||
->expects($this->at($at + 1))
|
||||
->expects($this->at($at + 2))
|
||||
->method('createPackage')
|
||||
->with($this->identicalTo($arg), $this->equalTo('Composer\Package\CompletePackage'))
|
||||
->will($this->returnValue($stubPackage));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue