Doctrine DBAL implementation of Wikibase TermStore.
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();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"
}
}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

