Increase memory_limit size (#485)

This commit is contained in:
Jerry Ma 2024-06-28 12:14:36 +08:00 committed by GitHub
parent 2a03c32bc0
commit 0857a19c3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,7 +27,7 @@ class BuilderProvider
*/
public static function makeBuilderByInput(InputInterface $input): BuilderBase
{
ini_set('memory_limit', '2G');
ini_set('memory_limit', '4G');
self::$builder = match (PHP_OS_FAMILY) {
'Windows' => new WindowsBuilder($input->getOptions()),