PHPackages                             naimcse56/float-spellout - 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. naimcse56/float-spellout

ActiveLibrary

naimcse56/float-spellout
========================

This is a Laravel Package to convert float number to words

07PHP

Since Sep 30Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Naimcse56/float-spellout)[ Packagist](https://packagist.org/packages/naimcse56/float-spellout)[ RSS](/packages/naimcse56-float-spellout/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

float-spellout
==============

[](#float-spellout)

Package for Laravel Developers to Convert Number to Words.

```
composer require naimcse56/float-spellout:dev-main
```

Add This in config/app.php

```
Naimcse56\FloatSpellout\FloatSpelloutServiceProvider::class
```

You can inject the service into your controller and use it to convert float numbers:

```
use Naimcse56\FloatSpellout\Contracts\NumberSpelloutContract;

class NumberController extends Controller
{
    private $spelloutService;

    public function __construct(NumberSpelloutContract $spelloutService)
    {
        $this->spelloutService = $spelloutService;
    }

    public function show($number)
    {
        $spelledOutNumber = $this->spelloutService->convert(floatval($number));
        return response()->json(['spelled_out' => $spelledOutNumber]);
    }
}
```

Or You can also do this below

```
use Naimcse56\FloatSpellout\Services\FloatNumberSpelloutService;

$service = new FloatNumberSpelloutService();
$result = $service->convert(123.45);

// Output will be 'one hundred twenty-three point four five'
```

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity17

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/925189ff681d1ab43b898ddd7c19da40ba9b46a6c1eebd4facec911de95b319d?d=identicon)[Naimcse56](/maintainers/Naimcse56)

---

Top Contributors

[![Naimcse56](https://avatars.githubusercontent.com/u/26866670?v=4)](https://github.com/Naimcse56 "Naimcse56 (17 commits)")

### Embed Badge

![Health badge](/badges/naimcse56-float-spellout/health.svg)

```
[![Health](https://phpackages.com/badges/naimcse56-float-spellout/health.svg)](https://phpackages.com/packages/naimcse56-float-spellout)
```

PHPackages © 2026

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