Swimranking Lenex file format parser

Maintainers

Package info

github.com/leonverschuren/lenex-php

pkg:composer/leonverschuren/lenex

Statistics

Installs: 54

Dependents: 0

Suggesters: 0

Stars: 8

Open Issues: 1

dev-master 2020-07-09 19:23 UTC

This package is not auto-updated.

Last update: 2026-03-26 07:11:29 UTC


README

This library is a PHP5 implementation of the Lenex file format. The format is commonly used in swimmeets and developed by Swimrankings. The library is able to read an uncompressed .lef file or a compressed .lxf file and transform it into objects.

The implementation in this library is based on Lenex version 3.0.

Usage

//namespace leonverschuren\Lenex\Parser;

$reader = new Reader();
$parser = new Parser();
$result = $parser->parseResult($reader->read(PATH_TO_FILE));