Download the PHP package voku/phonetic-algorithms without Composer

On this page you can find all versions of the php package voku/phonetic-algorithms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package phonetic-algorithms

Build Status Coverage Status Latest Stable Version Total Downloads Latest Unstable Version License

Phonetic-Algorithms

Description

Fuzzy searching for words that sound alike but are written differently.

Code Class Algorithm Key
de PhoneticGerman "Kölner Phonetik" (Wikipedia) digits
en PhoneticEnglish "metaphone" (Wikipedia), via the native PHP function letters
es PhoneticSpanish rule set documented in the class letters
fr PhoneticFrench "SOUNDEX FR" (roudoudou.com) letters
it PhoneticItalian rule set documented in the class letters
nl PhoneticDutch rule set documented in the class letters
pl PhoneticPolish rule set documented in the class letters
pt PhoneticPortuguese rule set documented in the class letters

"Kölner Phonetik", "metaphone" and "SOUNDEX FR" are published algorithms and are implemented as published.

The other languages have no single published standard, so they are rule sets that are documented in the class itself: every class carries its complete sound table in the docblock, and every row of that table is pinned by a test. They are built for the mistakes people really make in that language, for example:

Codes from different languages are not comparable with each other: pick the language of the data you are searching in.

Installation

  1. Install and use composer in your project.
  2. Require this package via composer:

Usage

You the "phonetic_word"-method if you need a fuzzy-search for single words e.g. last-names or product-names.

You can use the "phonetic_sentence"-method to process sentences.

You can use the "phonetic_matches"-method to search for words in an array of words.

Development

Coding-agent work in this repository runs through voku/agent-loop: plan, approve, implement, validate with recorded evidence, review, close. The board, the task contracts and the run receipts live under .agent-loop/.

See docs/agent-loop.md for the setup and docs/agent-loop-dogfood.md for what the workflow did and did not catch while these languages were added.

History

See CHANGELOG for the full history of changes.


All versions of phonetic-algorithms with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
voku/portable-utf8 Version ~6.0
voku/stop-words Version ~2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package voku/phonetic-algorithms contains the following files

Loading the files please wait ...