We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e04ad7 commit c8126dbCopy full SHA for c8126db
src/Install/GuidelineComposer.php
@@ -98,7 +98,11 @@ protected function find(): Collection
98
foreach ($this->roster->packages() as $package) {
99
$guidelineDir = str_replace('_', '-', strtolower($package->name()));
100
101
- $guidelines->put($guidelineDir.'/core', $this->guideline($guidelineDir.'/core')); // Add core
+ $guidelines->put(
102
+ $guidelineDir.'/core',
103
+ $this->guideline($guidelineDir.'/core')
104
+ ); // Always add package core
105
+
106
$guidelines->put(
107
$guidelineDir.'/v'.$package->majorVersion(),
108
$this->guidelinesDir($guidelineDir.'/'.$package->majorVersion())
0 commit comments