Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 631 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 631 Bytes

lib-php-readinglists

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