forked from venveo/craft-documentsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·46 lines (46 loc) · 1.33 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
{
"name": "venveo/craft-documentsearch",
"description": "Extract the contents of text documents and add to Craft's search index",
"type": "craft-plugin",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"document search"
],
"support": {
"docs": "https://github.com/venveo/craft-documentsearch/blob/master/README.md",
"issues": "https://github.com/venveo/craft-documentsearch/issues"
},
"license": "MIT",
"authors": [
{
"name": "Venveo",
"homepage": "https://venveo.com"
}
],
"require": {
"craftcms/cms": "^3.1.0",
"spatie/pdf-to-text": "^1.1",
"yooper/php-text-analysis": "^1.4",
"voku/stop-words": "^2.0"
},
"autoload": {
"psr-4": {
"venveo\\documentsearch\\": "src/"
}
},
"extra": {
"name": "Document Search",
"handle": "document-search",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-documentsearch/master/CHANGELOG.md",
"components": {
"documentSearch": "venveo\\documentsearch\\services\\DocumentSearch"
},
"class": "venveo\\documentsearch\\DocumentSearch"
}
}