Skip to content

Commit 4b7a96c

Browse files
committed
php-ini option was required but should not
1 parent d7294d6 commit 4b7a96c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/orange/cfhelper/configuration/PhpIniConfigurator.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ public function loadIniConfig()
6666
}
6767
if (is_file(__DIR__ . '/../../../../../../../composer.json')) {
6868
$composerJson = json_decode(file_get_contents(__DIR__ . '/../../../../../../../composer.json'), true);
69+
if (empty($composerJson['php-ini'])) {
70+
return;
71+
}
6972
$arrayValues = array_merge($arrayValues, $composerJson['php-ini']);
7073
}
7174
foreach ($arrayValues as $key => $value) {
@@ -109,4 +112,4 @@ public function setApplicationInfo(ApplicationInfo $applicationInfo)
109112
}
110113

111114

112-
}
115+
}

0 commit comments

Comments
 (0)