jonnyynnoj/haxball-roomlist-parser

Parses the haxball roomlist

v3.0.2 2019-07-06 18:01 UTC

This package is auto-updated.

Last update: 2024-04-07 04:38:17 UTC


README

Parses the haxball roomlist

composer require jonnyynnoj/haxball-roomlist-parser

Usage

$parser = RoomlistParser\Parser::create();
$rooms = $parser->parse();

foreach ($rooms as $room) {
    echo $room->getName();
}

Output as JSON:

echo json_encode($rooms);