Tiny library that defines the interface for term persistence of Wikibase entities.
Real implementations of the interface can be found in dependent packages.
This library does provide some trivial implementations, mainly to facilitate testing.
InMemoryPropertyTermStore- simple in memory FakeThrowingPropertyTermStore- throws an exception when one of its methods is invoked
To use the Wikibase TermStore library in your project, simply add a dependency on wikibase/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/term-store 1.x:
{
"require": {
"wikibase/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

