3xw / cakephp-clickup
There is no license information available for the latest version (4.0.1) of this package.
CakePHP pages plugins
4.0.1
2025-01-08 15:14 UTC
Requires
- php: >=7.1
- cakephp/cakephp: ^4.0
- muffin/webservice: dev-master
Requires (Dev)
README
This plugin allows you handle dealwith clickup as driver/webservice/endpoint
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require 3xw/cakephp-clickup
Load it in your src/Application.php
$this->addPlugin(\Trois\Clickup\Plugin::class);
Configure
in app.php
'Datasources' => [ 'click_up' => [ 'className' => 'Muffin\Webservice\Connection', 'service' => 'Trois/Clickup.ClickUp', 'token' => 'pk_***' ], //.. ]
Use
$this->loadModel('Trois/Clickup.Tasks', 'Endpoint'); debug($this->Tasks->find()->where(['listId' => 'xxx'])->toArray()); debug($this->Tasks->find()->where(['taskId' => 'xxx'])->toArray());