Skip to content

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

License

Notifications You must be signed in to change notification settings

vesper8/pgn-splitter

 
 

Repository files navigation

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.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%