This plugin allows you handle dealwith bexio as driver/webservice/endpoint
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require 3xw/cakephp-bexio
Load it in your src/Application.php
$this->addPlugin(\Trois\Bexio\Plugin::class);
in app.php
'Datasources' => [
'click_up' => [
'className' => 'Muffin\Webservice\Connection',
'service' => 'Trois/Bexio.ClickUp',
'token' => 'pk_***'
],
//..
]
$this->loadModel('Trois/Bexio.Tasks', 'Endpoint');
debug($this->Tasks->find()->where(['listId' => 'xxx'])->toArray());
debug($this->Tasks->find()->where(['taskId' => 'xxx'])->toArray());