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 54bb4ee commit 3e08fddCopy full SHA for 3e08fdd
src/Enum/Runtime.php
@@ -7,6 +7,7 @@ class Runtime
7
public const DOTNETCORE_1_0 = 'dotnetcore1.0';
8
public const DOTNETCORE_2_0 = 'dotnetcore2.0';
9
public const DOTNETCORE_2_1 = 'dotnetcore2.1';
10
+ public const DOTNETCORE_3_1 = 'dotnetcore3.1';
11
public const GO_1_X = 'go1.x';
12
public const JAVA_11 = 'java11';
13
public const JAVA_8 = 'java8';
@@ -31,6 +32,7 @@ public static function exists(string $value): bool
31
32
self::DOTNETCORE_1_0 => true,
33
self::DOTNETCORE_2_0 => true,
34
self::DOTNETCORE_2_1 => true,
35
+ self::DOTNETCORE_3_1 => true,
36
self::GO_1_X => true,
37
self::JAVA_11 => true,
38
self::JAVA_8 => true,
0 commit comments