forked from vanry/laravel-scout-tntsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
{
"name": "vanry/laravel-scout-tntsearch",
"description": "包含中文分词的 Laravel Scout TNTSearch 驱动,支持 scws, phpanalysis 和 jieba 分词。",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "vanry",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6.4",
"laravel/scout": "^3.0|^4.0",
"teamtnt/tntsearch": "~1.0",
"illuminate/support": "~5.4",
"illuminate/database": "~5.4"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"Vanry\\Scout\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Vanry\\Scout\\TNTSearchScoutServiceProvider"
]
}
},
"suggest": {
"fukuball/jieba-php": "Required to use the Jieba tokenizer (~0.25).",
"lmz/phpanalysis": "Required to use the PhpAnalysis tokenizer (~1.0).",
"vanry/scws": "Required to use the SCWS tokenizer (~1.0)."
}
}