hegartymaths / groove-api
Installs: 17 599
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 1
Forks: 2
Open Issues: 1
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.3
- tightenco/collect: ^5.5
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^6.0
- satooshi/php-coveralls: ^2.0
README
A simple wrapper for the Groove API in PHP.
Requirements
- PHP >= 7.0.0
Installation
Install via Composer.
$ composer require hegartymaths/groove-api
Basic usage
Visit the API Settings page (/groove_client/settings/api) via your company subdomain to find your private token.
use Groove\Client; $client = new Client('private-token'); $tickets = $client->tickets()->list();