fastwebmedia/hive-api

A wrapper around Hive API.

Installs: 503

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 5

Forks: 1

pkg:composer/fastwebmedia/hive-api

4.0.1 2015-10-08 08:50 UTC

This package is not auto-updated.

Last update: 2025-09-23 09:04:49 UTC


README

Build Status

Install

composer require fastwebmedia/hive

You then need to add the service provider

'FWM\Hive\HiveServiceProvider'

Finally publised the config

php artisan vendor:publish

Usage

You should first update the config file with the URL and the access token so you can make request via the Hive API.

$client = new FWM\Hive\Client();
return $client->api('user')->getUser('hello@fastweb.media');

Documentation

Coming soon - for now look in the Code and User API classes to view the available methods.