club-1/sphinx-inventory-parser

Parse Sphinx documentation's object.inv inventory file format into an indexed SphinxInventory object.

v1.2.0 2024-01-24 23:21 UTC

This package is auto-updated.

Last update: 2024-04-10 13:40:52 UTC


README

coverage report

Sphinx Inventory Parser is PHP library to parse Sphinx documentation's object inventory file format as used by intersphinx. It is loosely inspired from sphobjinv, whose documentation have also been very useful by describing the Sphinx objects.inv v2 Syntax.

Requirements

The only requirement is PHP >= 7.4 with Zlib extension (usually included).

Installation

This library is available on packagist and can be installed via composer:

composer require club-1/sphinx-inventory-parser

Simple example

The simplest way to use it is with _ that creates a _ object directly from an online documentation, based on its URL (and an optional inventory path).

use Club1\SphinxInventoryParser\SphinxInventoryParser;

$inventory = SphinxInventoryParser::parseFromDoc('https://club1.fr/docs/fr/');

For more examples on how to use this library, see the "Usage" section of the documentation.

Documentation

See the full documentation for more information, including the API reference.

Development

Development requirements

  • make: to manage build scripts
  • composer: to install PHP development dependencies
  • pigz: (Optional) to build tests data, will fallback to a PHP script if not present

On Debian and derivatives:

sudo apt install make composer pigz

Build scripts

make        # Fetch development dependencies and build tests data.
make check  # Run tests.
make fuzz   # Run fuzzer.
make clean  # Clean all downloaded and generated files.