appwrite/app/config/template-runtimes.php

13 lines
285 B
PHP
Raw Normal View History

2024-10-27 15:34:49 +00:00
<?php
use Utopia\Config\Config;
2025-04-17 10:11:52 +00:00
$runtimes = Config::getParam('runtimes');
$mappedRuntimes = \array_reduce($runtimes, function ($acc, $runtime) {
$acc[strtoupper($runtime['key'])][] = $runtime['key'] . '-' . $runtime['version'];
return $acc;
}, []);
return $mappedRuntimes;