marko/docs

Documentation search contract for Marko Framework

Maintainers

Package info

github.com/marko-php/marko-docs

Type:marko-module

pkg:composer/marko/docs

Statistics

Installs: 0

Dependents: 4

Suggesters: 0

Stars: 0

0.8.0 2026-05-29 15:36 UTC

This package is auto-updated.

Last update: 2026-06-03 14:28:35 UTC


README

Documentation search contract for Marko — defines the interface for querying Marko documentation, with interchangeable driver implementations.

Overview

marko/docs is the contract package that defines how Marko documentation is searched. It ships no search implementation — install a driver instead: marko/docs-fts for lightweight lexical search (SQLite FTS5) or marko/docs-vec for hybrid semantic + lexical search (FTS5 + sqlite-vec). Both drivers implement the same DocsSearchInterface, so switching is a one-line dependency change.

Installation

Install a driver (which pulls in this package automatically):

# Lightweight lexical search
composer require marko/docs-fts

# Hybrid semantic + lexical search
composer require marko/docs-vec

Or install the contract alone if you are building a custom driver:

composer require marko/docs

Usage

use Marko\Docs\Contract\DocsSearchInterface;
use Marko\Docs\ValueObject\DocsQuery;

class DocsController
{
    public function __construct(
        private DocsSearchInterface $docs,
    ) {}

    public function search(string $term): array
    {
        return $this->docs->search(new DocsQuery($term, limit: 10));
    }
}

Customization

Implement DocsSearchInterface and register your implementation as a Preference:

#[Preference(DocsSearchInterface::class)]
class MyDocsSearch implements DocsSearchInterface
{
    public function search(DocsQuery $query): array { /* ... */ }
    public function getPage(string $id): DocsPage { /* ... */ }
    public function listNav(): array { /* ... */ }
    public function driverName(): string { return 'custom'; }
}

Documentation

Full driver comparison and API reference: marko/docs