plan-it-app/planit-php-sdk

PHP SDK to access plan-it API

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/plan-it-app/planit-php-sdk

0.0.6 2016-04-11 07:07 UTC

This package is not auto-updated.

Last update: 2025-10-04 00:00:40 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
]);