Create README.md

This commit is contained in:
Alf Magne Kalleland
2013-01-17 09:35:15 -08:00
parent be3a529058
commit 3be7856b67

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
chessParser
===========
PHP class for conversion of Chess PGN files to PHP array or JSON.
This is the chess parser used in DHTML Chess at dhtml-chess.com
License: GPL
Example of use:
<?php
$parser = new PgnParser('my-games.pgn');
echo json_encode($parser->getGames());
?>