<?php
$file = file_get_contents('./file.json');
$content = json_decode($file, true);
$n = array("Min" => 1, "Sec" => 1);
array_push($content, $n);
header('Content-Type: application/json; charset=utf8');
echo json_encode($obj);