-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
50 lines (50 loc) · 1.44 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
{
"name": "loilo/fuse",
"description": "Fuzzy search for PHP based on Bitap algorithm",
"type": "library",
"version": "7.0.1",
"license": "Apache-2.0",
"authors": [
{
"name": "Florian Reuschel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.3.0 || ^0.4.0 || ^0.5.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"psalm/plugin-phpunit": "^0.16.1 || ^0.17.0 || ^0.18.0",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.9 || ^5.0"
},
"autoload": {
"psr-4": {
"Fuse\\": "src/"
},
"files": [
"src/Core/computeScore.php",
"src/Core/config.php",
"src/Core/format.php",
"src/Core/parse.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": "7.4"
}
}
}