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 9ea8cf6 commit 8d2bde7Copy full SHA for 8d2bde7
config/nativephp-internal.php
@@ -38,4 +38,9 @@
38
'apple_id_pass' => env('NATIVEPHP_APPLE_ID_PASS'),
39
'apple_team_id' => env('NATIVEPHP_APPLE_TEAM_ID'),
40
],
41
+
42
+ /**
43
+ * The binary path of PHP for NativePHP to use at build.
44
+ */
45
+ 'php_binary_path' => env('NATIVEPHP_PHP_BINARY_PATH'),
46
];
src/Commands/DebugCommand.php
@@ -117,7 +117,7 @@ private function processNativePHP(): static
117
'Post' => config('nativephp.postbuild'),
118
119
'NotarizationEnabled' => $isNotarizationConfigured,
120
- 'CustomPHPBinary' => env('NATIVEPHP_PHP_BINARY_PATH') ?: false,
+ 'CustomPHPBinary' => config('nativephp-internal.php_binary_path') ?? false,
121
122
]
123
);
0 commit comments