-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·45 lines (45 loc) · 1.25 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
{
"name": "venveo/craft-documentsearch",
"description": "Extract the contents of text documents and add to Craft's search index",
"type": "craft-plugin",
"version": "4.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"document search"
],
"support": {
"docs": "https://github.com/venveo/craft-documentsearch/blob/main/README.md",
"issues": "https://github.com/venveo/craft-documentsearch/issues"
},
"license": "MIT",
"authors": [
{
"name": "Venveo",
"homepage": "https://venveo.com"
}
],
"require": {
"php": "^8.0.2",
"ext-zip": "*",
"ext-dom": "*",
"ext-libxml": "*",
"craftcms/cms": "^4.0.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",
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-documentsearch/main/CHANGELOG.md",
"class": "venveo\\documentsearch\\DocumentSearch"
}
}