Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Document Search plugin for Craft CMS 4
# Document Search plugin for Craft CMS 5
Extracts keywords and phrases from PDF documents and adds them to Craft CMS' native search index.

**NOTE:**
Expand Down Expand Up @@ -26,7 +26,7 @@ Once installed and configured (see configuration section), PDF assets with text
Like other fields in Craft, you may tweak the search query to your liking by targeting the field named `contentKeywords`

## Requirements
- Craft CMS 3.1.x
- Craft CMS 5.0.x
- pdftotext executable
- Ample memory

Expand All @@ -53,6 +53,10 @@ To install on RedHat or CentOS, the precompiled binaries can be procured from yu

`yum install poppler-utils`

To install on MacOS, the precompiled binaries can be procured from [Homebrew](https://brew.sh):

`brew install poppler`

**Note:**
If you're looking for a full-text document search solution, this isn't it. The purpose of this plugin is to boil down large documents to consumable sizes for a PHP-based web server.

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"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",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
Expand All @@ -26,7 +26,7 @@
"ext-zip": "*",
"ext-dom": "*",
"ext-libxml": "*",
"craftcms/cms": "^4.0.0",
"craftcms/cms": "^5.0.0",
"spatie/pdf-to-text": "^1.1",
"yooper/php-text-analysis": "^1.4",
"voku/stop-words": "^2.0"
Expand Down