/lib-php-readinglists

PHP library for helping developers with reading lists integrations

Primary LanguagePHPGNU General Public License v2.0GPL-2.0

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