We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adeb7a1 commit 5ca86deCopy full SHA for 5ca86de
1 file changed
include/download-instructions/windows-scoop.php
@@ -6,6 +6,11 @@
6
powershell -c "irm https://get.scoop.sh | iex"
7
8
# Download and install PHP.
9
+<?php if ($version === $latestPhpVersion) { ?>
10
+scoop bucket add main
11
+scoop install main/php
12
+<?php } else { ?>
13
scoop bucket add versions
-scoop install php<?= $versionNoDot; ?>
14
+scoop install versions/php<?= $versionNoDot; ?>
15
+<?php } ?>
16
</code></pre>
0 commit comments