unikent/lib-php-kar

KAR API for PHP.


Keywords
api, library, kar
License
GPL-2.0+

Documentation

lib-php-kar

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;
}