Parses a haxball replay file
composer require jonnyynnoj/haxball-replay-parser
$file = fopen('path\to\replay.hbr', 'r');
// OR
$file = file_get_contents('path\to\replay.hbr');
$parser = new ReplayParser\Parser($file);
$replay = $parser->parse();
Output as JSON:
echo json_encode($replay);