Skip to content

Commit 72fd0b8

Browse files
[travis] Fix deps=low/high builds
1 parent 94773ad commit 72fd0b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/travis.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
$versions = file_get_contents('https://packagist.org/packages/'.$package->name.'.json');
4747
$versions = json_decode($versions);
4848

49-
foreach ($versions->package->versions as $version => $package) {
50-
$packages[$package->name] += array($version => $package);
49+
foreach ($versions->package->versions as $v => $package) {
50+
$packages[$package->name] += array($v => $package);
5151
}
5252
}
5353

0 commit comments

Comments
 (0)