crazycodr / roman
Provides a simple decimal/roman number converter
1.0.1
2019-07-11 16:45 UTC
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.11
- league/csv: ^8.0
- phpunit/phpunit: ^7.1
This package is auto-updated.
Last update: 2024-10-12 04:00:04 UTC
README
Roman is a simple library to convert numbers from decimal to roman and vice versa.
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!
Note that this library is only tested against PHP 5.6, 7.0 and HHVM but should work in any version!
Install
Install Roman
using Composer.
$ 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.
$ composer test
License
The MIT License (MIT). Please see LICENSE for more information.