Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class CommonAents |
||
8 | { |
||
9 | // TODO handle version |
||
10 | private static $orchestratorAents = [ |
||
11 | 'theaentmachine/aent-docker-compose', |
||
12 | 'theaentmachine/aent-kubernetes' |
||
13 | ]; |
||
14 | |||
15 | private static $reverseProxyAents = [ |
||
16 | 'theaentmachine/aent-traefik' |
||
17 | ]; |
||
18 | |||
19 | private static $CIAents = [ |
||
20 | 'theaentmachine/aent-gitlabci' |
||
21 | ]; |
||
22 | |||
23 | private static $imageBuilderAents = [ |
||
24 | 'theaentmachine/aent-dockerfile' |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * @param string $key |
||
29 | * @return string[] |
||
30 | * @throws CommonAentsException |
||
31 | */ |
||
32 | public static function getAentsListByDependencyKey(string $key): array |
||
48 |