PHPackages                             junholee14/laravel-unicode-normalizer - 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. junholee14/laravel-unicode-normalizer

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

junholee14/laravel-unicode-normalizer
=====================================

A set of features to make working with unicode normalization in Laravel

v1.0.1(2y ago)1816↓72.2%MITPHPPHP ^8.1

Since Mar 3Pushed 2y ago1 watchersCompare

[ Source](https://github.com/junholee14/laravel-unicode-normalizer)[ Packagist](https://packagist.org/packages/junholee14/laravel-unicode-normalizer)[ RSS](/packages/junholee14-laravel-unicode-normalizer/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (2)Dependencies (5)Versions (3)Used By (0)

Laravel Unicode Normalizer Package
==================================

[](#laravel-unicode-normalizer-package)

Introduction
------------

[](#introduction)

The Laravel Unicode Normalizer package provides a simple and efficient way to normalize Unicode characters in your Laravel application. This package includes middleware for easy normalization of incoming requests and a validation rule to ensure that data is normalized before processing.

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

[](#requirements)

- PHP &gt;= 8.1
- Laravel &gt;= 10
- `intl` PHP extension

Installation
------------

[](#installation)

To install the package, run the following command in your Laravel project:

```
composer require junholee14/laravel-unicode-normalizer
```

After installation, you can publish the package configuration using:

```
php artisan vendor:publish --provider="Junholee14\LaravelUnicodeNormalizer\UnicodeNormalizationProvider"
```

The default normalization form is `NFC`. You can change this in the published configuration file.

Usage
-----

[](#usage)

### Middleware

[](#middleware)

The `NormalizeUnicode` middleware automatically normalizes all incoming request data to the specified Unicode form. To use it, simply add the middleware to your route or middleware group in `app/Http/Kernel.php`:

```
// app/Http/Kernel.php
protected $middlewareAliases = [
   ...
   'normalizeUnicode' => \Junholee14\LaravelUnicodeNormalizer\Middlewares\NormalizeUnicode::class,
];
```

### Validation Rule

[](#validation-rule)

The package also provides a `normalize_unicode` validation rule to ensure that data is in normalized form. You can use this rule like any other Laravel validation rule:

```
$request->validate([
    'input_field' => ['required', 'string', new NormalizedUnicode()],
]);
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

853d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/406ec4505b09fdfd521303f88bdf87ed9aef22a88efc229a91c5a800fa3fcbbf?d=identicon)[junholee14](/maintainers/junholee14)

---

Top Contributors

[![junholee14](https://avatars.githubusercontent.com/u/22486158?v=4)](https://github.com/junholee14 "junholee14 (31 commits)")

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/junholee14-laravel-unicode-normalizer/health.svg)

```
[![Health](https://phpackages.com/badges/junholee14-laravel-unicode-normalizer/health.svg)](https://phpackages.com/packages/junholee14-laravel-unicode-normalizer)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M10](/packages/renatomarinho-laravel-page-speed)[illuminate/pagination

The Illuminate Pagination package.

12234.1M1.0k](/packages/illuminate-pagination)[illuminate/pipeline

The Illuminate Pipeline package.

9349.2M282](/packages/illuminate-pipeline)[illuminate/redis

The Illuminate Redis package.

8314.6M377](/packages/illuminate-redis)[illuminate/cookie

The Illuminate Cookie package.

244.6M138](/packages/illuminate-cookie)

PHPackages © 2026

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