hnhdigital-os / laravel-number-converter by bluora

Number to word, roman, ordinal converter
92,963
17
3
Package Data
Maintainer Username: bluora
Maintainer Contact: rocco@bluora.com.au (Rocco Howard)
Package Create Date: 2016-11-22
Package Last Update: 2024-03-23
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:06:38
Package Statistics
Total Downloads: 92,963
Monthly Downloads: 4,827
Daily Downloads: 179
Total Stars: 17
Total Watchers: 3
Total Forks: 7
Total Open Issues: 1

Laravel Number Converter

This package provides a Laravel wrapper to the PHP-Number-Converter package that provides the ability to convert a numerical number to a word, roman numeral, or an ordinal suffix.

Latest Stable Version Total Downloads Latest Unstable Version Built for Laravel License Donate to this project using Patreon

StyleCI Issue Count Code Climate

This package has been developed by H&H|Digital, an Australian botique developer. Visit us at hnh.digital.

Requirements

  • PHP >= 7.1.3
  • Laravel >= 5.6

Install

Via composer:

$ composer require hnhdigital-os/laravel-number-converter

Enable an alias by editing config/app.php:

'aliases' => [
    ...
    'NumConvert' => 'HnhDigital\LaravelNumberConverter\Facade',
    ...
]

Convert to word

Supported number range -2147483647 to 2147483647.

echo NumConvert::word(1);
echo number_to_word(1);
one

Convert to roman

Supported number range 1 to 3999.

echo NumConvert::roman(1);
echo number_to_roman(1);
I

Ordinal (word + suffix)

Supported number range 1 to 2147483647.

echo NumConvert::wordOrdinal(1);
echo number_to_word_ordinal(1);
first

Ordinal (number + suffix)

Supported number range 1 to 2147483647.

echo NumConvert::numberOrdinal(1);
echo number_with_ordinal_suffix(1);
1st

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.