<?php
$data = file_get_contents(__DIR__ . "/data.json");
header("Content-type: application/json; charset=utf-8", true);
echo json_encode($data);
?>