ferranfg / elo-rating
There is no license information available for the latest version (1.2.0) of this package.
A PHP implementation of Elo rating system
1.2.0
2023-01-11 15:23 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-11-04 08:10:59 UTC
README
A PHP class which implements the Elo rating system for Fantasy Padel Tour.
Install with composer
composer require ferranfg/elo-rating
Link to Packagist.org: https://packagist.org/packages/ferranfg/elo-rating
Usage
require 'src/Rating/Rating.php';
// player A elo = 1000
// player B elo = 2000
// player A lost
// player B win
$rating = new Rating(1000, 2000, Rating::LOST, Rating::WIN);
// player A elo = 1000
// player B elo = 2000
// player A draw
// player B draw
$rating = new Rating(1000, 2000, Rating::DRAW, Rating::DRAW);
$results = $rating->getNewRatings();
echo "New rating for player A: " . $results['a'];
echo "New rating for player B: " . $results['b'];
Credits
Elo Rating PHP by Michal Chovanec is licensed under a Creative Commons Attribution 4.0 International License.