Skip to content

Latest commit

 

History

History
73 lines (51 loc) · 2.31 KB

README.md

File metadata and controls

73 lines (51 loc) · 2.31 KB

pgn-splitter

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

A PHP library to split PGN files into chunks per game or per section.

Installation

Via composer:

composer require chesszebra/pgn-splitter

Usage

Split a stream per game:

use ChessZebra\Chess\Pgn\Splitter;

$stream = fopen('my-games.pgn', 'r');

$splitter = new Splitter($stream, Splitter::SPLIT_GAMES);
$splitter->split(function(string $buffer) {
    echo $buffer;
});

Or split a stream per chunk (tags and moves chunks):

use ChessZebra\Chess\Pgn\Splitter;

$stream = fopen('my-games.pgn', 'r');

$splitter = new Splitter($stream, Splitter::SPLIT_CHUNKS);
$splitter->split(function(string $buffer) {
    echo $buffer;
});

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please report them via HackerOne.

License

The MIT License (MIT). Please see License File for more information.