mitkov-systems/ms-php-asana-api
最新稳定版本:0.2.0
Composer 安装命令:
composer require mitkov-systems/ms-php-asana-api
包简介
A package that makes communicating with Asana's API easier.
README 文档
README
Making communication with Asana's API easier.
If you need a quick and easy way to make calls to the Asana API. This is the package for you.
Installation
composer require mitkov-systems/ms-php-asana-api
Getting started
use MitkovSystems\Asana\Client;
$client = new Client('your-personal-access-token');
print_r($client->workspaces());
Available methods from the client:
$client->workspaces(); // get workspaces
$client->projects(); // get projects
$client->projectTasks($projectGid); // get project tasks
$client->sections($projectGid); // get project sections
$client->sectionTasks($sectionGid); // get tasks for a given section
$client->createTask($data); // create task
$client->updateTask($taskGid, $data); // update task
$client->deleteTask($taskGid); // delete task
$client->addTaskToSection($sectionGid, $taskGid); // add task to section
$client->addCommentToTask($taskGid $text); // add comment to task
$client->deleteComment($commentGid); // delete comment
$client->request($method, $url, $data); // custom Asana API request
Issues
If you find issues with this package create a ticket in GitLab.
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-25