-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.19 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "keinos/mb_levenshtein",
"description": "Levenshtein function with UTF-8 support.",
"keywords": ["levenshtein", "utf-8"],
"homepage": "https://github.com/KEINOS/mb_levenshtein",
"authors": [
{
"name": "KEINOS",
"homepage": "https://github.com/KEINOS",
"role": "Maintainer"
},
{
"name": "Luciole75w",
"homepage": "https://www.php.net/manual/en/function.levenshtein.php#113702",
"role": "Original Author"
},
{
"name": "mpyw",
"homepage": "https://qiita.com/mpyw/items/2b636827730e06c71e3d",
"role": "Most influenced us on this script."
},
{
"name": "THE CONTRIBUTORS",
"homepage": "https://github.com/KEINOS/mb_levenshtein/graphs/contributors",
"role": "Contributor"
}
],
"require": {
"php": ">=5.3.0",
"ext-mbstring": "*"
},
"autoload": {
"files": ["mb_levenshtein.php"]
},
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"archive": {
"exclude": ["/samples", "/tests", "/.travis.yml"]
}
}