Download the PHP package mfonte/php82-search without Composer

On this page you can find all versions of the php package mfonte/php82-search. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php82-search

Demo

A Lucene-inspired PHP Search engine library.

Original Package: https://github.com/VincentFoulon80/php-search.

Internally uses Wamania PHP Snowball Stemmer https://github.com/wamania/php-stemmer

This package was forked to allow PHP 8.2 compatibility.

Installation

install this library via Composer :

What can it do ?

in short :

Take a look at the Feature Page for a more complete listing

Quick start

The search engine is packaged with an example schema that allow you to take hand quickly on the library.

at first you need to load the search engine.

You can give an array in parameter of the class constructor, see the wiki's configuration page for more informations.

By constructing the engine, there'll be some directory that appeared next to your index file :

(All these directories can be changed with the configuration array)

At first, you have to give to the engine something to search for. We'll create some documents and ask the engine to index them.

Note : you can also put these two documents in one array and use the updateMultiple() function for indexing multiple documents at once.

Now that you documents are indexed, you can use the search function and fetch results :

For more informations about this library, like using more advanced features, go to the wiki page of this repository

Admin Panel

:warning: Warning : This panel does not handle any security by itself. If you use it, it's up to you to prevent the public from accessing it !

The Admin panel is a class that need to be instantiated and then run. It's not a callable file so you'll need to call it via a regular php file :

the AdminPanel's constructor accept as first parameter the same config array as you may use to instanciate the Engine, and you'll want to pass it if you have customized schemas. (or else the panel will not work properly)

More informations in the Admin Panel Manual

License

This library is under the MIT license. See the complete license


All versions of php82-search with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3
wamania/php-stemmer Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mfonte/php82-search contains the following files

Loading the files please wait ....