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 6eb0c5e commit e3731ecCopy full SHA for e3731ec
src/PHPDocker/PhpExtension/AvailableExtensionsFactory.php
@@ -29,6 +29,7 @@ class AvailableExtensionsFactory
29
private const string PHP_VERSION_81 = '8.1';
30
private const string PHP_VERSION_82 = '8.2';
31
private const string PHP_VERSION_83 = '8.3';
32
+ private const string PHP_VERSION_84 = '8.4';
33
34
/**
35
* Supported PHP versions
@@ -37,6 +38,7 @@ class AvailableExtensionsFactory
37
38
self::PHP_VERSION_81 => Php81AvailableExtensions::class,
39
self::PHP_VERSION_82 => Php82AvailableExtensions::class,
40
self::PHP_VERSION_83 => Php83AvailableExtensions::class,
41
+ self::PHP_VERSION_84 => Php84AvailableExtensions::class,
42
];
43
44
0 commit comments