PHPackages                             panix/mod-zend-search - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Search &amp; Filtering](/categories/search)
4. /
5. panix/mod-zend-search

ActivePixelion-module[Search &amp; Filtering](/categories/search)

panix/mod-zend-search
=====================

Zend Lucene search

05PHP

Since Dec 5Pushed 4y ago1 watchersCompare

[ Source](https://github.com/andrtechno/mod-zend-search)[ Packagist](https://packagist.org/packages/panix/mod-zend-search)[ RSS](/packages/panix-mod-zend-search/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Zend Lucene Search
==================

[](#zend-lucene-search)

Zend Lucene search

[![Latest Stable Version](https://camo.githubusercontent.com/f5607007c73b425d460a3969490f54d5fa2c74c424d2335365e63261cfe1a22d/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d7a656e642d7365617263682f762f737461626c65)](https://packagist.org/packages/panix/mod-zend-search)[![Total Downloads](https://camo.githubusercontent.com/2b1b0efde330c59b27244c20ecc722ca969d476d5d52274b73dd92cd541fd6ad/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d7a656e642d7365617263682f646f776e6c6f616473)](https://packagist.org/packages/panix/mod-zend-search)[![Monthly Downloads](https://camo.githubusercontent.com/135f80d90f153d0f2ae019316f10dc622a8ad1bf5c23009d483c7e42eaff3669/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d7a656e642d7365617263682f642f6d6f6e74686c79)](https://packagist.org/packages/panix/mod-zend-search)[![Daily Downloads](https://camo.githubusercontent.com/8e73c10b6098a7a576e764a04f4afd5cf39850e2eee9ca6589bc1894774361d3/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d7a656e642d7365617263682f642f6461696c79)](https://packagist.org/packages/panix/mod-zend-search)[![Latest Unstable Version](https://camo.githubusercontent.com/186edc362ba57e087c93122deed5d8689866284966163cd370be6c9af85a4380/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d7a656e642d7365617263682f762f756e737461626c65)](https://packagist.org/packages/panix/mod-zend-search)[![License](https://camo.githubusercontent.com/37427c73e989d9f7a5848e80012ce46652df12bbe49d3264998dd8ab4186308b/68747470733a2f2f706f7365722e707567782e6f72672f70616e69782f6d6f642d7a656e642d7365617263682f6c6963656e7365)](https://packagist.org/packages/panix/mod-zend-search)

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

- Add

```
"panix/mod-zend-search" : "*",
"zendframework/zendsearch": "2.0.0rc6"
```

to the require section of your application's `composer.json` file.

- Add a new component in `components` section of your application's configuration file, for example:

```
'components' => [
    'search' => [
        'class' => 'panix\mod\search\Search',
        'models' => [
            'app\modules\page\models\Page',
        ],
    ],
    // ...
],
```

- Add behavior in the AR models, for example:

```
use panix\mod\search\behaviors\SearchBehavior;

public function behaviors()
{
    return [
        'search' => [
            'class' => SearchBehavior::className(),
            'searchScope' => function ($model) {
                /** @var \yii\db\ActiveQuery $model */
                $model->select(['title', 'body', 'url']);
                $model->andWhere(['indexed' => true]);
            },
            'searchFields' => function ($model) {
                /** @var self $model */
                return [
                    ['name' => 'title', 'value' => $model->title],
                    ['name' => 'body', 'value' => strip_tags($model->body)],
                    ['name' => 'url', 'value' => $model->url, 'type' => SearchBehavior::FIELD_KEYWORD],
                    ['name' => 'model', 'value' => 'page', 'type' => SearchBehavior::FIELD_UNSTORED],
                ];
            }
        ],
    ];
}
```

Resources
---------

[](#resources)

- [Zend Lucene](http://framework.zend.com/manual/1.12/en/zend.search.lucene.html)

###  Health Score

16

—

LowBetter than 4% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/f081670109ead0bd6a80aa3af5e9ef9fdcacecdaa3d5a9c1281eed523d09e455?d=identicon)[andrtechno](/maintainers/andrtechno)

---

Top Contributors

[![andrtechno](https://avatars.githubusercontent.com/u/6948026?v=4)](https://github.com/andrtechno "andrtechno (5 commits)")

### Embed Badge

![Health badge](/badges/panix-mod-zend-search/health.svg)

```
[![Health](https://phpackages.com/badges/panix-mod-zend-search/health.svg)](https://phpackages.com/packages/panix-mod-zend-search)
```

###  Alternatives

[awesome-nova/dependent-filter

Dependent filters for Laravel Nova

26193.1k](/packages/awesome-nova-dependent-filter)[algolia/php-dom-parser

A simple tool to turn DOM into Algolia search friendly record objects.

181.8k](/packages/algolia-php-dom-parser)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
