nextcloud/kitinerary

KItinerary adapter

Installs: 94 626

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 4

Open Issues: 0

pkg:composer/nextcloud/kitinerary

v1.0.0 2023-12-07 13:53 UTC

This package is not auto-updated.

Last update: 2025-10-11 16:45:23 UTC


README

kitinerary

REUSE status

KDE itinerary extractor for php. This package does not provide the bindings to the C++ applications. Use the binary adapter and Flatpak adapter in combination with this package.

Installation

composer require nextcloud/kitinerary

Usage

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

$extractor = new ItineraryExtractor(/* adapter instance */);

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