feat: add support for libphp and the embed SAPI

This commit is contained in:
Kévin Dunglas
2023-08-21 09:30:46 +02:00
committed by Jerry Ma
parent ca3f8a350d
commit 085c1a159c
5 changed files with 71 additions and 18 deletions

View File

@@ -252,6 +252,9 @@ abstract class BuilderBase
if (($type & BUILD_TARGET_FPM) === BUILD_TARGET_FPM) {
$ls[] = 'fpm';
}
if (($type & BUILD_TARGET_EMBED) === BUILD_TARGET_EMBED) {
$ls[] = 'embed';
}
return implode(', ', $ls);
}