Skip to content

Commit

Permalink
chore: prevent future issues when min stability is set
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Dec 16, 2023
1 parent 616206e commit dd35701
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ protected function composerConfig(ServerRequestInterface $request): array
Arr::set($composerJson, $key, $value);
}

// Always prefer stable releases.
$composerJson['prefer-stable'] = true;

$this->composerJson->set($composerJson);
}

Expand Down

0 comments on commit dd35701

Please sign in to comment.