Skip to content

Commit 1f98a47

Browse files
committed
Remove space and added missing php8.3v
1 parent 1189598 commit 1f98a47

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Command/Image/GeneratePhp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ private function buildDockerfile(string $dockerfile, string $phpVersion, string
287287
}
288288
}
289289

290-
if ($this->semver::satisfies($phpVersion, '8.2.*')) {
290+
if ($this->semver::satisfies($phpVersion, '8.3.*')) {
291291
$packages[] = 'python3-yaml';
292292
$pythonPackages = '';
293293
} else {

src/Compose/Php/ExtensionResolver.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,9 +433,8 @@ public static function getConfig(): array
433433
],
434434
'>=8.3' => [
435435
self::EXTENSION_TYPE => self::EXTENSION_TYPE_PECL,
436-
self::EXTENSION_PACKAGE_NAME => 'xdebug-3.2.0',
436+
self::EXTENSION_PACKAGE_NAME => 'xdebug-3.3.0',
437437
],
438-
439438
],
440439
'xmlrpc' => [
441440
'>=7.0 <8.0' => [self::EXTENSION_TYPE => self::EXTENSION_TYPE_CORE],

0 commit comments

Comments
 (0)