PHPackages                             bluora/laravel-number-converter - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. bluora/laravel-number-converter

Abandoned → [hnhdigital-os/laravel-number-converter](/?search=hnhdigital-os%2Flaravel-number-converter)Library[Utility &amp; Helpers](/categories/utility)

bluora/laravel-number-converter
===============================

Number to word, roman, ordinal converter

1.4.1(5y ago)112857[1 PRs](https://github.com/bluora/laravel-number-converter/pulls)MITPHPPHP ^7.2|^8.0

Since Feb 4Pushed 1y ago3 watchersCompare

[ Source](https://github.com/bluora/laravel-number-converter)[ Packagist](https://packagist.org/packages/bluora/laravel-number-converter)[ RSS](/packages/bluora-laravel-number-converter/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (10)Dependencies (4)Versions (8)Used By (0)

Laravel Number Converter
========================

[](#laravel-number-converter)

This package provides a Laravel wrapper to the [PHP-Number-Converter](https://github.com/hnhdigital-os/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](https://camo.githubusercontent.com/366da87496b9c811b9bdfb5ed0e926283a08c7ed9ef7ca2dbdd08ac9012cfc49/68747470733a2f2f706f7365722e707567782e6f72672f686e686469676974616c2d6f732f6c61726176656c2d6e756d6265722d636f6e7665727465722f762f737461626c652e737667)](https://packagist.org/packages/hnhdigital-os/laravel-number-converter) [![Total Downloads](https://camo.githubusercontent.com/c154efde5ccaada0a4f94bd61f6d277c95a854ade3d2a8d82832f7fd7919bdb9/68747470733a2f2f706f7365722e707567782e6f72672f686e686469676974616c2d6f732f6c61726176656c2d6e756d6265722d636f6e7665727465722f646f776e6c6f6164732e737667)](https://packagist.org/packages/hnhdigital-os/laravel-number-converter) [![Latest Unstable Version](https://camo.githubusercontent.com/fb513ad4dab33a73e13a4488c5d948bb62cf835601a9b16509fecfa17853fc2c/68747470733a2f2f706f7365722e707567782e6f72672f686e686469676974616c2d6f732f6c61726176656c2d6e756d6265722d636f6e7665727465722f762f756e737461626c652e737667)](https://packagist.org/packages/hnhdigital-os/laravel-number-converter) [![Built for Laravel](https://camo.githubusercontent.com/ddd4a07bb769306a9338cffde2032c289e4d43d43ac346122709465a47cdff3f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c745f666f722d4c61726176656c2d677265656e2e737667)](https://laravel.com/) [![License](https://camo.githubusercontent.com/705a5a9233310dd33a01e90f1853c19278e12ab33e273dfa88e1653fb509acf9/68747470733a2f2f706f7365722e707567782e6f72672f686e686469676974616c2d6f732f6c61726176656c2d6e756d6265722d636f6e7665727465722f6c6963656e73652e737667)](https://packagist.org/packages/hnhdigital-os/laravel-number-converter) [![Donate to this project using Patreon](https://camo.githubusercontent.com/f9e075baad95563481d35174d43ef50757281abb6bc795d0f473fad452afa030/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f70617472656f6e2d646f6e6174652d79656c6c6f772e737667)](https://patreon.com/RoccoHoward)

[![StyleCI](https://camo.githubusercontent.com/f7cf7b1dccadf94ea90b3c6889e014e8176abcba3412f1d5a2e92d801574ad61/68747470733a2f2f7374796c6563692e696f2f7265706f732f37343532333535362f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/74523556) [![Issue Count](https://camo.githubusercontent.com/f4087cc5e0a665a4f146bd2b367c35f111a3dd1e9c82cfd9b6649ca0d0345e25/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f686e686469676974616c2d6f732f6c61726176656c2d6e756d6265722d636f6e7665727465722f6261646765732f69737375655f636f756e742e737667)](https://codeclimate.com/github/hnhdigital-os/laravel-number-converter) [![Code Climate](https://camo.githubusercontent.com/a62e8263e624e8f3a95ee89f4beb9d172d73385a6cde280ba77712653faaec59/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f686e686469676974616c2d6f732f6c61726176656c2d6e756d6265722d636f6e7665727465722f6261646765732f6770612e737667)](https://codeclimate.com/github/hnhdigital-os/laravel-number-converter)

This package has been developed by H&amp;H|Digital, an Australian botique developer. Visit us at [hnh.digital](http://hnh.digital).

Requirements
------------

[](#requirements)

- PHP ^7.2|^8.0
- Laravel ^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0

Install
-------

[](#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

[](#convert-to-word)

Supported number range -2147483647 to 2147483647.

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

```
one

```

### Convert to roman

[](#convert-to-roman)

Supported number range 1 to 3999.

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

```
I

```

### Ordinal (word + suffix)

[](#ordinal-word--suffix)

Supported number range 1 to 2147483647.

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

```
first

```

### Ordinal (number + suffix)

[](#ordinal-number--suffix)

Supported number range 1 to 2147483647.

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

```
1st

```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/hnhdigital-os/laravel-number-converter/blob/master/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Rocco Howard](https://github.com/therocis)
- [All Contributors](https://github.com/hnhdigital-os/laravel-number-converter/contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/hnhdigital-os/laravel-number-converter/blob/master/LICENSE) for more information.

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 83.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~126 days

Recently: every ~156 days

Total

7

Last Release

1948d ago

PHP version history (3 changes)1.0.0PHP &gt;=7.1.3

1.2.0PHP ^7.2

1.4.1PHP ^7.2|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/5270e3a3d1add4e39f12dfde3ce549999a26f759d7128056083ab07f475259f2?d=identicon)[bluora](/maintainers/bluora)

---

Top Contributors

[![RoccoHoward](https://avatars.githubusercontent.com/u/227896?v=4)](https://github.com/RoccoHoward "RoccoHoward (36 commits)")[![riesjart](https://avatars.githubusercontent.com/u/23455176?v=4)](https://github.com/riesjart "riesjart (4 commits)")[![ChaerilM](https://avatars.githubusercontent.com/u/1352081?v=4)](https://github.com/ChaerilM "ChaerilM (1 commits)")[![mikebronner](https://avatars.githubusercontent.com/u/1791050?v=4)](https://github.com/mikebronner "mikebronner (1 commits)")[![SamuelMwangiW](https://avatars.githubusercontent.com/u/1807304?v=4)](https://github.com/SamuelMwangiW "SamuelMwangiW (1 commits)")

---

Tags

laravelconverterwordnumberordinalroman

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/bluora-laravel-number-converter/health.svg)

```
[![Health](https://phpackages.com/badges/bluora-laravel-number-converter/health.svg)](https://phpackages.com/packages/bluora-laravel-number-converter)
```

###  Alternatives

[hnhdigital-os/laravel-number-converter

Number to word, roman, ordinal converter

19165.7k2](/packages/hnhdigital-os-laravel-number-converter)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[vinkius-labs/laravel-page-speed

Laravel Page Speed

2.5k9.6k1](/packages/vinkius-labs-laravel-page-speed)[hekmatinasser/notowo

This Package helps developers change number to word for all language on Laravel freamwork PHP

32521.3k2](/packages/hekmatinasser-notowo)[linkxtr/laravel-qrcode

A clean, modern, and easy-to-use QR code generator for Laravel

3614.9k](/packages/linkxtr-laravel-qrcode)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
