<?php

$version = "2.0.0.0";
$gamefiles = "https://dl.gcrmp.com/launcher_042023/test_gamefiles.json";

$object = [
  'version' => $version,
  'gamefiles' => $gamefiles
];
$json = json_encode($object, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);

header('Content-Type: application/json');
echo $json; 