plan-it-app/planit-php-sdk

PHP SDK to access plan-it API

0.0.6 2016-04-11 07:07 UTC

This package is not auto-updated.

Last update: 2024-04-19 17:05:57 UTC


README

Usage

Add plan-it-app/planit-php-sdk as a dependency in your project's composer.json file:

{
	"require": {
		"plan-it-app/planit-php-sdk": "^1.0"
	}
}

Create new instance:

use Planit\API;

$x = new \Planit\API(TOKEN, [
	'ignoreSSL' => false, // default
	'cookies_jar' => true // default is true, can set a new \GuzzleHttp\Cookie\CookieJar if you want
]);