1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00

Merge branch '1.5'

This commit is contained in:
Jordi Boggiano 2017-08-18 14:05:07 +02:00
commit 79360da184

View file

@ -278,7 +278,8 @@ class GitLabDriver extends VcsDriver
*/
protected function getReferences($type)
{
$resource = $this->getApiUrl().'/repository/'.$type.'?per_page=100';
$perPage = 100;
$resource = $this->getApiUrl().'/repository/'.$type.'?per_page='.$perPage;
$references = array();
do {
@ -287,11 +288,16 @@ class GitLabDriver extends VcsDriver
foreach ($data as $datum) {
$references[$datum['name']] = $datum['commit']['id'];
// Keep the last commit date of a reference to avoid
// unnecessary API call when retrieving the composer file.
$this->commits[$datum['commit']['id']] = $datum['commit'];
// Keep the last commit date of a reference to avoid
// unnecessary API call when retrieving the composer file.
$this->commits[$datum['commit']['id']] = $datum['commit'];
}
if (count($data) >= $perPage) {
$resource = $this->getNextPage();
} else {
$resource = false;
}
$resource = $this->getNextPage();
} while ($resource);
return $references;