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 0762c25 commit 32904d1Copy full SHA for 32904d1
src/Compose/Php/ExtensionResolver.php
@@ -131,7 +131,7 @@ public function get(Config $config): array
131
132
foreach ($phpExtensions as $phpExtName) {
133
if (isset(self::BUILTIN_EXTENSIONS[$phpExtName])
134
- && $this->semver::satisfies($phpVersion, (float) self::BUILTIN_EXTENSIONS[$phpExtName])
+ && $this->semver::satisfies($phpVersion, self::BUILTIN_EXTENSIONS[$phpExtName])
135
) {
136
continue;
137
}
@@ -496,7 +496,9 @@ public static function getConfig(): array
496
],
497
498
'ftp' => [
499
- '>=8.4' => [self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE],
+ '>=8.2' => [
500
+ self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE,
501
+ ],
502
503
];
504
0 commit comments