appointedd / appointedd-php
Installs: 3 995
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 1
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: ^6.0
- illuminate/support: >=4.1.0,<4.3
This package is not auto-updated.
Last update: 2025-03-01 17:54:10 UTC
README
#Appointedd PHP Client
##Getting Started
###Composer
Install the composer PHP package
Add the following to your composer.json require section:
"appointedd/appointedd-php": "dev-master"
and run composer update
###Manually
It's recommended that you use Composer, however you can download and install from this repository.
Please note. This client requires the Guzzle REST PHP package.
###Laravel 4
This package comes with a Service Provider for easy integration with Laravel4.
Add the following entry to the providers array in config/app.php
'Appointedd\Appointedd\AppointeddServiceProvider'
##Usage
use Appointedd\Appointedd\Appointedd; // Non-Laravel users only
$apClient = Appointedd::setAccessToken('gTHZNc7DVZJI24KIcFLHTipMIqUWFSrA');
$customers = $apClient->get('organisation/customers');
if(is_object($customers))
var_dump($customers->json());
##Endpoints
TODO
Unit Tests
Make sure you have PHPUnit installed. cd
into the package root and run phpunit