-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
41 lines (41 loc) · 1.14 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
{
"name": "nqxcode/laravel-lucene-search",
"description": "Laravel 5.5 package for full-text search over Eloquent models based on ZendSearch Lucene.",
"keywords": ["laravel", "lucene", "zendsearch", "eloquent", "search", "fulltext"],
"license": "MIT",
"authors": [
{
"name": "Andrey Pokoev",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"illuminate/support": "5.5.*",
"nqxcode/zendsearch": "2.*",
"nqxcode/lucene-stemmer-en-ru": "1.*"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"mockery/mockery": "0.9.*",
"orchestra/testbench": "~3.5.0",
"orchestra/database": "~3.5.0"
},
"autoload": {
"files": [
"src/Nqxcode/LuceneSearch/Support/helpers.php"
],
"psr-4": {
"Nqxcode\\LuceneSearch\\": "src/Nqxcode/LuceneSearch",
"tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Nqxcode\\LuceneSearch\\ServiceProvider"
]
}
},
"minimum-stability": "stable"
}