-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·25 lines (25 loc) · 890 Bytes
/
composer.json
File metadata and controls
executable file
·25 lines (25 loc) · 890 Bytes
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
{
"name": "edgaras/strsim",
"description": "Collection of string similarity and distance algorithms in PHP including Levenshtein, Damerau-Levenshtein, Jaro-Winkler, and more",
"type": "library",
"homepage": "https://github.com/Edgaras0x4E/StrSim",
"license": "MIT",
"keywords": ["string", "similarity", "distance", "levenshtein", "damerau-levenshtein", "jaro", "jaro-winkler", "lcs", "smith-waterman", "needleman-wunsch", "cosine", "jaccard", "monge-elkan", "text", "fuzzy", "comparison", "algorithm", "multibyte"],
"autoload": {
"psr-4": {
"Edgaras\\StrSim\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Edgaras\\StrSim\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5"
}
}