roliod / texas-holdem-up-validation-rules
A rule engine that can determine the rank of a poker hand.
1.1.2
2020-12-22 19:30 UTC
Requires
- php: ^7.2
Requires (Dev)
- codeception/codeception: ^3.0
- phpunit/phpunit: ^7.5
- vimeo/psalm: ^3.4
This package is not auto-updated.
Last update: 2024-11-06 14:38:48 UTC
README
A Texas Hold’em poker hands validation rule engine in PHP.
Installation
Prerequisites
PHP version >= 7.2
Install Package
In order to install this package can either add it directly to your composer.json
:
{ "require": { "roliod/texas-holdem-up-validation-rules": "^1.1.1" } }
OR
composer require roliod/texas-holdem-up-validation-rules
Quick Start
This package followings the Standard Poker Hand Ranking rules.
In order to get the rank of a list of hands using this package, you will need to do the following.
<?php declare(strict_types=1); $evaluator = \Roliod\TexasHUPoker\Evaluate(PATH_TO_TXT_FILE); $rankingList = $evaluator->rank(); print_r($rankingList);
Sample TXT File Content
Here is a sample txt file content acceptable by the package:
10❤ 10♦ 10♠ 9♣ 9♦
4♠ J♠ 8♠ 2♠ 9♠
3♦ J♣ 8♠ 4❤ 2♠
7♣ 7♦ 7♠ K♣ 3♦
A❤ A♦ 8♣ 4♠ 7❤
J❤ J♦ J♠ J♣ 7♦
8♣ 7♣ 6♣ 5♣ 4♣
9♣ 8♦ 7♠ 6♦ 5❤
4♣ 4♠ 3♣ 3♦ Q♣
A♦ K♦ Q♦ J♦ 10♦