ROMAN
, (*1)
Roman is a simple library to convert numbers from decimal to roman and vice versa., (*2)
Usage
$converter = new CrazyCodr\Converters\Roman();
$roman = $converter->toRoman(4999); //Outputs MMMMCMXCIX
$number = $converter->fromRoman('MMMMCMXCIX'); //Outputs 4999
System Requirements
You need PHP >= 5.0 although you should be using at least PHP >= 5.6 by now!, (*3)
Note that this library is only tested against PHP 5.6, 7.0 and HHVM but should work in any version!, (*4)
Install
Install Roman using Composer., (*5)
$ composer require crazycodr/roman
Testing
Roman has a PHPUnit test suite and a coding style compliance test suite using PHP CS Fixer. To run the tests, run the following command from the project folder., (*6)
bash
$ composer test, (*7)
License
The MIT License (MIT). Please see LICENSE for more information., (*8)