10000 Fix psh services detection · sargath/symfony-cli@af1999e · GitHub
[go: up one dir, main page]

Skip to content

Commit af1999e

Browse files
committed
Fix psh services detection
1 parent bbbdf45 commit af1999e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

local/platformsh/php.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package platformsh
22

3+
import "strings"
4+
35
func IsPhpExtensionAvailable(ext, phpVersion string) bool {
4-
versions, ok := availablePHPExts[ext]
6+
versions, ok := availablePHPExts[strings.ToLower(ext)]
57
if !ok {
68
return false
79
}

0 commit comments

Comments
 (0)
0