Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Behat Transliterator
====================

This package is abandoned
Comment thread
acoulton marked this conversation as resolved.
-------------------------

This package is now abandoned and will not receive further updates. The underlying transliteration
dataset it is based on has not been updated since 2016, and there are now better options available.
Additionally, there are some complications around licensing (see [#3](https://github.com/Behat/Transliterator/issues/3))
due to the mixed licenses of the original packages it was based on.

Suggested alternatives include:

* symfony/string for generating slugs
* the native `Transliterator` class built into PHP's `ext-intl` for transliterating text.
Unlike this package, that can also respect locale-dependent transliterations.
* The `//TRANSLIT` feature of PHP's native `iconv()` extension (available by default)


Behat Transliterator provides transliteration utilities for PHP.

Transliteration data are ported from the [Perl Text-Unidecode module](https://metacpan.org/pod/Text::Unidecode).
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "behat/transliterator",
"abandoned": true,
"description": "String transliterator",
"keywords": [
"transliterator",
Expand Down