We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7294d6 commit 4b7a96cCopy full SHA for 4b7a96c
src/orange/cfhelper/configuration/PhpIniConfigurator.php
@@ -66,6 +66,9 @@ public function loadIniConfig()
66
}
67
if (is_file(__DIR__ . '/../../../../../../../composer.json')) {
68
$composerJson = json_decode(file_get_contents(__DIR__ . '/../../../../../../../composer.json'), true);
69
+ if (empty($composerJson['php-ini'])) {
70
+ return;
71
+ }
72
$arrayValues = array_merge($arrayValues, $composerJson['php-ini']);
73
74
foreach ($arrayValues as $key => $value) {
@@ -109,4 +112,4 @@ public function setApplicationInfo(ApplicationInfo $applicationInfo)
109
112
110
113
111
114
-}
115
+}
0 commit comments