kotchuprik / php-brainstorage
Unofficial Brainstorage Library based on parsing
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
pkg:composer/kotchuprik/php-brainstorage
Requires
- sleeping-owl/apist: 1.*
This package is not auto-updated.
Last update: 2025-09-27 20:29:34 UTC
README
Unofficial Brainstorage PHP Library based on parsing with the use sleeping-owl/apist
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require kotchuprik/php-brainstorage "dev-master"
or add
"kotchuprik/php-brainstorage": "dev-master"
to the require
section of your application composer.json
file.
Usage
require('vendor/autoload.php'); $client = new \kotchuprik\brainstorage\Client(); // Getting jobs on the page $page = 1; $items = $client->getItems($page); // Getting the job description var_export($client->getItem(reset($items)['id']));