crazycodr/roman

Provides a simple decimal/roman number converter

1.0.1 2019-07-11 16:45 UTC

This package is auto-updated.

Last update: 2024-04-12 02:58:42 UTC


README

Latest Version Software License Build Status Total Downloads

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.