unikent/lib-php-kar

KAR API for PHP.

3.0.2 2016-05-24 12:01 UTC

This package is not auto-updated.

Last update: 2024-11-09 17:19:34 UTC


README

Latest Stable Version Build Status StyleCI

Full API docs available here: http://unikent.github.io/lib-php-kar/

PHP library for helping developers with KAR integrations

Add this to your composer require:

  • "unikent/lib-php-kar": "dev-master"

Then get lists like so:

$api = new \unikent\KAR\API('https://kar-test.kent.ac.uk');
$documents = $api->search_author("person@kent.ac.uk");
foreach ($documents as $document) {
    echo "---------------------------------\n";
    echo $document;
}