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
Requires
- php: >=5.3
Requires (Dev)
README
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;
}