-
Notifications
You must be signed in to change notification settings - Fork 55
/
Runtime.php
62 lines (36 loc) · 1.23 KB
/
Runtime.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
namespace Hammerstone\Sidecar;
abstract class Runtime
{
public const NODEJS_20 = 'nodejs20.x';
public const NODEJS_18 = 'nodejs18.x';
public const NODEJS_16 = 'nodejs16.x';
/** @deprecated */
public const NODEJS_14 = 'nodejs14.x';
public const PYTHON_312 = 'python3.12';
public const PYTHON_311 = 'python3.11';
public const PYTHON_310 = 'python3.10';
public const PYTHON_39 = 'python3.9';
public const PYTHON_38 = 'python3.8';
/** @deprecated */
public const PYTHON_37 = 'python3.7';
public const JAVA_21 = 'java21';
public const JAVA_17 = 'java17';
public const JAVA_11 = 'java11';
public const JAVA_8_LINUX2 = 'java8.al2';
/** @deprecated */
public const JAVA_8 = 'java8';
public const DOT_NET_8 = 'dotnet8';
public const DOT_NET_7 = 'dotnet7';
public const DOT_NET_6 = 'dotnet6';
public const RUBY_33 = 'ruby3.3';
public const RUBY_32 = 'ruby3.2';
/** @deprecated */
public const RUBY_27 = 'ruby2.7';
/** @deprecated */
public const GO_1X = 'go1.x';
public const PROVIDED_AL2023 = 'provided.al2023';
public const PROVIDED_AL2 = 'provided.al2';
/** @deprecated */
public const PROVIDED = 'provided';
}