-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "designbycode/fuzzy-search",
"description": "The Fuzzy Search package provides a simple and efficient way to perform fuzzy searches on a collection of texts using the Levenshtein distance algorithm. This package is useful when you need to search for texts that may contain typos or slight variations.",
"keywords": [
"Designbycode",
"fuzzy-search",
"fuzzy search",
"search",
"levenshtein distance",
"levenshtein"
],
"homepage": "https://github.com/designbycode/fuzzy-search",
"license": "MIT",
"authors": [
{
"name": "Claude Myburgh",
"email": "claude@designbycode.co.za",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"designbycode/levenshtein-distance": "^1.0"
},
"require-dev": {
"pestphp/pest": "^2.20",
"laravel/pint": "^1.0",
"spatie/ray": "^1.28"
},
"autoload": {
"psr-4": {
"Designbycode\\FuzzySearch\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Designbycode\\FuzzySearch\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}