dnb/wikibase-converter

Converts GND PICA into Wikibase items

dev-master 2022-12-16 13:14 UTC

This package is auto-updated.

Last update: 2024-03-16 15:42:06 UTC


README

PHP library that provides services to convert GND items in PICA+ format to a structure ready for import into Wikibase.

GND Wikibase Converter was created by Professional.Wiki for the German National Library.

GitHub Workflow Status Type Coverage codecov Latest Stable Version Download count

Installation

This library can be used in your projects via the Composer dependency manager.

The package name is dnb/wikibase-converter. Minimal example of a composer.json file:

{
    "require": {
        "dnb/wikibase-converter": "~1.0"
    }
}

Usage

PICA+ JSON to Wikibase-like data structure

use DNB\WikibaseConverter\PicaConverter;
$gndItem = PicaConverter::newWithDefaultMapping()->picaJsonToGndItem( $string );

$gndItem->getPropertyIds();
$gndItem->getStatementsForProperty( 'P123' );

Development

Start by installing the project dependencies by executing

composer update

You can run the tests by executing

make test

You can run the style checks by executing

make cs

To run all CI checks, execute

make ci

You can also invoke PHPUnit directly to pass it arguments, as follows

vendor/bin/phpunit --filter SomeClassNameOrFilter

Release notes

Version 0.1.0

Under development