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.
The only requirement is PHP >= 7.4 with Zlib extension (usually included).
This library is available on packagist and can be installed via composer:
composer require club-1/sphinx-inventory-parser
The simplest way to use it is with SphinxInventoryParser::parseFromDoc()
that creates a SphinxInventory
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.
See the full documentation for more information, including the API reference.
- 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
make # Fetch development dependencies and build tests data.
make check # Run tests.
make fuzz # Run fuzzer.
make clean # Clean all downloaded and generated files.