nextcloud/kitinerary-sys

KItinerary binding for the system package

v1.0.1 2024-08-02 13:48 UTC

This package is auto-updated.

Last update: 2024-09-10 09:25:02 UTC


README

kitinerary-sys

REUSE status

System executable adapter for the kitinerary extractor package. This package provides an adapter that invokes the binary installed on the system, e.g. with a Linux distribution's package manager.

Installation

composer require nextcloud/kitinerary nextcloud/kitinerary-sys

Usage

use Nextcloud\KItinerary\ItineraryExtractor;
use Nextcloud\KItinerary\Sys\SysAdapter;
use Nextcloud\KItinerary\Exception\KItineraryRuntimeException;

$adapter = new SysAdapter();
if (!$adapter->isAvailable()) {
    // ...
}
$extractor = new Extractor($adapter);

try {
    $itinerary = $extractor->extractFromString('...');
} catch (KItineraryRuntimeException $e) {
    // ...
}