odiemiranda / orangelogic-api
Simple OrangeLogic Search API wrapper
Requires
- php: >=5.3
- ext-curl: *
Requires (Dev)
- phpunit/phpunit: 4.0.*
- vlucas/phpdotenv: ^2.0
This package is not auto-updated.
Last update: 2025-07-20 08:48:22 UTC
README
Simple OrangeLogic Search API wrapper, in PHP.
Installation
You can install orangelogic-api using Composer:
composer require odiemiranda/orangelogic-api
You will then need to:
- run
composer install
to get these dependencies added to your vendor directory - add the autoloader to your application with this line:
require("vendor/autoload.php")
Alternatively you can just download the OrangeLogic.php
file and include it manually:
include('./OrangeLogic.php');
Examples
Start by use
-ing the class and creating an instance with domain, login, and password
use \OdieMiranda\OrangeLogic\OrangeLogic; $api = new OrangeLogic('domain.com', 'LoginName', 'password');
Then, search the media library
$api->search('Georgia: DR-TB patients find hope in new treatments'); print_r($api->getItems());
To get the search result next page
$api->search('Georgia: DR-TB patients find hope in new treatments', '', '', 2); print_r($api->getItems());
Contributing
This is a fairly simple wrapper, but it will be made much better by contributions. If you like to suggest an improvement, please raise an issue to discuss it before make a pull-request.
Pull requests for bugs are more than welcome - please explain the bug you're trying to fix in the message.