mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
11 lines
271 B
PHP
11 lines
271 B
PHP
<?php
|
|
|
|
$_SERVER['BASE_PAGE'] = 'releases/active.php';
|
|
|
|
include_once __DIR__ . '/../include/prepend.inc';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/branches.inc';
|
|
|
|
header('Content-Type: application/json; charset=UTF-8');
|
|
|
|
echo json_encode(get_active_branches());
|