-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
33 lines (33 loc) · 979 Bytes
/
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
{
"name": "nqxcode/laravel-lucene-search",
"description": "Laravel 4.2 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": "nc101ux@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.2.*",
"nqxcode/zendsearch": "2.*",
"nqxcode/lucene-stemmer-en-ru": "1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "0.9.*",
"orchestra/testbench": "2.2.*"
},
"autoload": {
"files": [
"src/Nqxcode/LuceneSearch/Support/helpers.php"
],
"psr-4": {
"Nqxcode\\LuceneSearch\\": "src/Nqxcode/LuceneSearch",
"tests\\": "tests/"
}
},
"minimum-stability": "stable"
}