Skip to content

Commit f5e2dd4

Browse files
Merge branch 'php-8-4-docker-images' of https://github.com/magento-commerce/magento-cloud-docker into php-8-4-docker-images
2 parents 6d6b0ac + c4512e1 commit f5e2dd4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/Command/Image/GeneratePhp.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ class GeneratePhp extends Command
8888
'opcache',
8989
'xsl',
9090
'zip',
91-
'sodium'
91+
'sodium',
92+
'ftp'
9293
];
9394

9495
private const DOCKERFILE = 'Dockerfile';

src/Compose/Php/ExtensionResolver.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class ExtensionResolver
5050
// Required for Magento 2.4.0+
5151
'xsl',
5252
'sodium',
53+
'ftp'
5354
];
5455

5556
/**
@@ -494,6 +495,9 @@ public static function getConfig(): array
494495
BASH
495496
],
496497
],
498+
'ftp' => [
499+
'>=8.4' => [self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE],
500+
],
497501
];
498502
}
499503
}

0 commit comments

Comments
 (0)