jonnyynnoj/haxball-roomlist-parser

Parses the haxball roomlist

Installs: 50

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jonnyynnoj/haxball-roomlist-parser

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

This package is auto-updated.

Last update: 2025-10-07 08:19:41 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);