rossedman/teamwork
最新稳定版本:v1.1.0
Composer 安装命令:
composer require rossedman/teamwork
包简介
PHP wrapper for the Teamwork project management API
README 文档
README
This is a simple PHP Client that can connect to the Teamwork API. This package was developed to be used with Laravel 5 but can also be used stand alone as well. I hope this helps you automate and extend Teamwork to integrate even more into your business! Have fun and good luck. 🤘
Installation
Just add this to your composer.json and then run composer update.
"rossedman/teamwork": "~1.0"
You can also simply add it like this
composer require "rossedman/teamwork:~1.0"
Laravel Setup
This wrapper comes with support for Laravel 5. This includes a service provider as well as a facade for easy access.
Once this package is pulled into your project just add this to your config/app.php file.
'providers' => [ ... 'Rossedman\Teamwork\TeamworkServiceProvider', ],
and then add the facade to your aliases array
'aliases' => [ ... 'Teamwork' => 'Rossedman\Teamwork\Facades\Teamwork', ],
Configuration
If you are using Laravel then add a teamwork array to your config/services.php file
... 'teamwork' => [ 'key' => 'YourSecretKey', 'url' => 'YourTeamworkUrl' ],
Use
If you are using the Facade with Laravel youc an easily access Teamwork like this
Teamwork::people()->all();
If you want to use dependency injection to make your application easy to test the Service Provider binds Rossedman\Teamwork\Factory. Here is an example of how to use it with dependency injection
Route::get('/test', function(Rossedman\Teamwork\Factory $teamwork) { $activity = $teamwork->activity()->latest(); });
Configuration Without Laravel
If you are not using Laravel you can instantiate the class like this
require "vendor/autoload.php"; use GuzzleHttp\Client as Guzzle; use Rossedman\Teamwork\Client; use Rossedman\Teamwork\Factory as Teamwork; $client = new Client(new Guzzle, 'YourSecretKey', 'YourTeamworkUrl'); $teamwork = new Teamwork($client);
You are ready to go now!
Examples
Not all of the Teamwork API is supported yet but there is still a lot you can do! Below are some examples of how you can access Projects, Companies, and more. To work with a specific Object pass in the ID to perform actions on it. Data can be passed through for creating and editing.
To see more examples visit the docs
// create a project $teamwork->project()->create([ "name" => "My New Amazing Project", "description" => "This is a project that I will dedicate my whole life too", "companyId" => "999" ]); // get the latest activity on a project $teamwork->project($projectID)->activity();
Roadmap
1.1 Release
- Add Support For
Comments - Add Support For
Permissions - Add Support For
TimeEndpoint
1.2 Release
- Add Support For
Categories - Add Support For
People Status - Add Support For
Files - Add Support For
Notebooks
rossedman/teamwork 适用场景与选型建议
rossedman/teamwork 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.12k 次下载、GitHub Stars 达 45, 最近一次更新时间为 2015 年 04 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「laravel」 「project management」 「teamwork」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rossedman/teamwork 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rossedman/teamwork 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rossedman/teamwork 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Task system for APPUI
An introduction to machine learning in Rubix ML using the famous Iris dataset and the K Nearest Neighbors classifier.
Alfabank REST API integration
Ensolab template project
PHP web framework and project generator
统计信息
- 总下载量: 2.12k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 45
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-03
