brandlabs / productiveio
A PHP SDK package for interacting Productive.io REST API
v0.1.1
2019-10-22 14:10 UTC
Requires
- php: >=7.2
- guzzlehttp/guzzle: ^6.3.3
Requires (Dev)
- leaphub/phpcs-symfony2-standard: ~2.0.0
- phpmd/phpmd: @stable
- phpunit/phpunit: ^8
- sebastian/phpcpd: *
- squizlabs/php_codesniffer: ~2.0.0
This package is not auto-updated.
Last update: 2025-04-02 16:40:29 UTC
README
This package provides convenient access to the Productive.io REST API for applications written in PHP.
Getting Started
$ git clone git@github.com:brandlabs/productiveio.git
$ cd productive-io
$ composer install
Installation
while in the root folder of the project where you want to use this library, do the following:
$ composer config repositories.productiveio git git@github.com:brandlabs/productiveio.git
$ composer require brandlabs/productiveio [stable-version]
Prerequisites
PHP 7.2+
Tests
$ composer test
Example
<?php ... use Brandlabs\Productiveio\ApiClient; use Brandlabs\Productiveio\Resources\TaskLists; $authToken = '[Productive.io API auth token]'; $organisationId = '[productiveio organisation id]'; $timeout = 60.0; // optional, defaults to 60.0 seconds $apiClient = new ApiClient($company, $baseApiUrl, $username, $password, $timeout); $taskListResource = new TaskLists($apiClient); // gets a Task List resource item $id = '{set to task list id}'; $taskListResource->get($id); //updates Task List item $taskListPayload = [ // fill in Task List item properties ]; $taskListResource->update($id, $taskListPayload); //creates task list item $taskListPayload = [ // fill in Task List item properties ]; $taskListResource->create($taskListPayload); // deletes Task List item $taskListResource->delete($id); // get list $requestParams = [ 'page[number]' => 1 ] $taskListResource->getList($requestParams); // get aggregate $aggregate = true; $taskListResource->getList($requestParams, $aggregate);
Notes
API References
https://developer.productive.io
for more details on each Resource list request parameters.
Authors
- Jideobi Ofomah Benedine
License
This project is licensed under the MIT License - see the LICENSE file for details