aval24/cz-routines

Routines for normalizing and formatting czech names and personal info

Maintainers

Package info

github.com/aval24/cz-routines

Homepage

pkg:composer/aval24/cz-routines

Statistics

Installs: 89

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.4 2025-04-10 08:08 UTC

This package is auto-updated.

Last update: 2026-03-10 10:10:58 UTC


README

CZ Names

Tooling for normalizing names

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist aval24/cz-routines "*"

or add

"aval24/cz-routines": "*"

to the require section of your composer.json.

Usage

use aval24\czroutines\CZNames;

$name = "Mgr. JANA TALÁKOVÁ";

$test1 = CZNames::purge($name);

echo "Source: $name\n"; 
echo "Result: $test1\n";