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 a31a62e commit da74b57Copy full SHA for da74b57
src/DownloadLinkFetcher.php
@@ -32,7 +32,10 @@ private static function determineVCVersion(string $tag): string {
32
if (preg_match('/^php-7\.4\./', $tag)) {
33
return 'vc15';
34
}
35
- return 'vs16';
+ if (preg_match('/^php-8\.[0123]\./', $tag)) {
36
+ return 'vs16';
37
+ }
38
+ return 'vs17';
39
40
41
private function getWindowsLinks(string $tag): array {
0 commit comments