unikent/lib-php-readinglists

There is no license information available for the latest version (4.4) of this package.

Reading Lists API for PHP.

4.4 2018-05-16 09:39 UTC

This package is not auto-updated.

Last update: 2024-04-11 16:55:17 UTC


README

Latest Stable Version

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

PHP library for helping developers with reading lists integrations

Add this to your composer require:

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

Then get lists like so:

$api = new \unikent\ReadingLists\API();

$lists = $api->get_lists("EN902");

foreach ($lists as $list) {
    echo "---------------------------------\n";
    echo $list;
}