-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
62 lines (62 loc) · 1.71 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
55
56
57
58
59
60
61
62
{
"name": "vanry/laravel-scout-tntsearch",
"description": "包含中文分词的 Laravel Scout TNTSearch 驱动,支持 scws, phpanalysis 和 jieba 分词。",
"keywords": ["tntsearch", "search", "scout", "laravel"],
"license": "MIT",
"type": "library",
"support": {
"issues": "https://github.com/vanry/laravel-scout-tntsearch/issues",
"source": "https://github.com/vanry/laravel-scout-tntsearch"
},
"authors": [
{
"name": "vanry",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0|^8.0",
"illuminate/console": "~5.5|^6.0|^7.0|^8.0",
"illuminate/database": "~5.5|^6.0|^7.0|^8.0",
"illuminate/support": "~5.5|^6.0|^7.0|^8.0",
"illuminate/view": "~5.5|^6.0|^7.0|^8.0",
"laravel/scout": "^7.0|^8.0|^9.0",
"lmz/phpanalysis": "^1.0",
"teamtnt/tntsearch": "^2.0"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"Vanry\\Scout\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Vanry\\Scout\\TNTSearchScoutServiceProvider"
]
}
},
"suggest": {
"fukuball/jieba-php": "Required to use the Jieba tokenizer (~0.25).",
"vanry/scws": "Required to use the SCWS tokenizer (^2.0)."
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}