wikibase/doctrine-term-store

This package is abandoned and no longer maintained. No replacement package was suggested.

Small library for persistence of Wikibase terms via Doctrine DBAL

dev-master / 0.1.x-dev 2020-01-24 10:52 UTC

This package is not auto-updated.

Last update: 2020-01-29 03:16:50 UTC


README

Build Status Latest Stable Version Download count

Doctrine DBAL implementation of Wikibase TermStore.

Usage

The public entry point of the package is DoctrineTermStore, which is used to construct all services.

$termStore = new DoctrineTermStore( /* config */ );

Getting terms:

$fingerprint = $termStore->newPropertyTermStore()->getTerms( $propertyId );

Schema creation:

$termStore->install();

Installation

To use the Wikibase TermStore library in your project, simply add a dependency on wikibase/doctrine-term-store to your project's composer.json file. Here is a minimal example of a composer.json file that just defines a dependency on wikibase/doctrine-term-store 1.x:

{
    "require": {
        "wikibase/doctrine-term-store": "~1.0"
    }
}

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