File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,21 @@ private function buildPreloadScript(): void
203203 $ output .= 'require_once __DIR__ . ' . var_export ($ path , true ) . '; ' . "\n" ;
204204 }
205205
206+ $ polyfillBootstraps = [
207+ '/vendor/symfony/polyfill-php80/bootstrap.php ' ,
208+ '/vendor/symfony/polyfill-php81/bootstrap.php ' ,
209+ '/vendor/symfony/polyfill-php83/bootstrap.php ' ,
210+ '/vendor/symfony/polyfill-php84/bootstrap.php ' ,
211+ '/vendor/symfony/polyfill-php85/bootstrap.php ' ,
212+ '/vendor/symfony/polyfill-mbstring/bootstrap.php ' ,
213+ '/vendor/symfony/polyfill-intl-normalizer/bootstrap.php ' ,
214+ '/vendor/symfony/polyfill-intl-grapheme/bootstrap.php ' ,
215+ '/vendor/symfony/polyfill-ctype/bootstrap.php ' ,
216+ ];
217+ foreach ($ polyfillBootstraps as $ bootstrapPath ) {
218+ $ output .= 'require_once __DIR__ . ' . var_export ($ bootstrapPath , true ) . '; ' . "\n" ;
219+ }
220+
206221 file_put_contents ($ preloadScript , sprintf ($ template , $ output ));
207222 }
208223
You can’t perform that action at this time.
0 commit comments