8000 minor #19264 [travis] Fix deps=low/high builds (nicolas-grekas) · symfony/symfony@e262ef0 · GitHub
[go: up one dir, main page]

Skip to content

Commit e262ef0

Browse files
minor #19264 [travis] Fix deps=low/high builds (nicolas-grekas)
This PR was merged into the 2.7 branch. Discussion ---------- [travis] Fix deps=low/high builds | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 72fd0b8 [travis] Fix deps=low/high builds
2 parents 81b0cc7 + 72fd0b8 commit e262ef0

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)
0