|
@@ 82-86 (lines=5) @@
|
| 79 |
|
|
| 80 |
|
// Connect built-in dependencies for example on the PHP version, or |
| 81 |
|
// on PHP extensions. For these, composer does not create a composer.lock. |
| 82 |
|
if (isset($rootPackageData['require'])) { |
| 83 |
|
foreach ($rootPackageData['require'] as $name => $versionConstraint) { |
| 84 |
|
$this->connect($graph, $rootPackageData['name'], $name, $versionConstraint); |
| 85 |
|
} |
| 86 |
|
} |
| 87 |
|
|
| 88 |
|
if (isset($rootPackageData['require-dev'])) { |
| 89 |
|
foreach ($rootPackageData['require-dev'] as $name => $versionConstraint) { |
|
@@ 88-92 (lines=5) @@
|
| 85 |
|
} |
| 86 |
|
} |
| 87 |
|
|
| 88 |
|
if (isset($rootPackageData['require-dev'])) { |
| 89 |
|
foreach ($rootPackageData['require-dev'] as $name => $versionConstraint) { |
| 90 |
|
$this->connect($graph, $rootPackageData['name'], $name, $versionConstraint); |
| 91 |
|
} |
| 92 |
|
} |
| 93 |
|
|
| 94 |
|
return $graph; |
| 95 |
|
} |