1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Deprecate release/states.php in favor of release/branches.php (#1249)

This commit is contained in:
Sara Golemon
2025-03-27 14:04:46 -05:00
committed by GitHub
parent 098f637b37
commit 72ba36cfd7
2 changed files with 33 additions and 0 deletions

30
releases/branches.php Normal file
View File

@@ -0,0 +1,30 @@
<?php
include_once __DIR__ . '/../include/prepend.inc';
include_once __DIR__ . '/../include/branches.inc';
header('Content-Type: application/json; charset=UTF-8');
function formatDate($date = null) {
return $date !== null ? $date->format('c') : null;
}
$current = [];
foreach (get_all_branches() as $major => $releases) {
foreach ($releases as $branch => $release) {
$current[$branch] = [
'branch' => $branch,
'latest' => ($release['version'] ?? null),
'state' => get_branch_support_state($branch),
'initial_release' => formatDate(get_branch_release_date($branch)),
'active_support_end' => formatDate(get_branch_bug_eol_date($branch)),
'security_support_end' => formatDate(get_branch_security_eol_date($branch)),
];
}
}
// Sorting should already be correct based on return of get_all_branches(),
// but enforce it here anyway, just to be nice.
usort($current, fn($a, $b) => version_compare($b['branch'], $a['branch']));
echo json_encode($current);

View File

@@ -1,4 +1,7 @@
<?php
# This API is deprecated as of 2025-04-01.
# Please use /releases/branches.php instead.
# This API *may* be removed at an indeterminate point in the future.
$_SERVER['BASE_PAGE'] = 'releases/active.php';