-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.41 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
{
"name": "loilo/fuse",
"description": "Fuzzy search for PHP based on Bitap algorithm",
"type": "library",
"version": "7.1.1",
"license": "Apache-2.0",
"authors": [
{
"name": "Florian Reuschel",
"email": "florian@loilo.de"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Fuse\\": "src/"
},
"files": [
"src/Core/computeScore.php",
"src/Core/config.php",
"src/Core/format.php",
"src/Core/parse.php",
"src/Helpers/diacritics.php",
"src/Helpers/get.php",
"src/Helpers/sort.php",
"src/Helpers/types.php",
"src/Search/Bitap/computeScore.php",
"src/Search/Bitap/convertMaskToIndices.php",
"src/Search/Bitap/createPatternAlphabet.php",
"src/Search/Bitap/search.php",
"src/Search/Extended/parseQuery.php",
"src/Transform/transformMatches.php",
"src/Transform/transformScore.php"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}