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 e7c859f commit 14907acCopy full SHA for 14907ac
extension/BuildPhpExtension/private/Get-ExtensionConfig.ps1
@@ -95,7 +95,7 @@ Function Get-ExtensionConfig {
95
if(Test-Path composer.json) {
96
$composerJson = Get-Content composer.json -Raw | ConvertFrom-Json
97
}
98
- if($null -ne $composerJson -and $null -ne $composerJson."php-ext") {
+ if($null -ne $composerJson -and $null -ne $composerJson."php-ext" -and $null -ne $composerJson."php-ext"."configure-options") {
99
$composerJson."php-ext"."configure-options" | ForEach-Object {
100
$config.options += "--$( $_.name )"
101
0 commit comments