johnrich85/teamwork

PHP wrapper for the Teamwork project management API

v3.0.1 2025-01-10 12:30 UTC

This package is auto-updated.

Last update: 2025-08-10 13:57:20 UTC


README

teamwork-graphic

Scrutinizer Code Quality Release License

This is a simple PHP Client that can connect to the Teamwork API.

Installation

You can simply add it like this

composer require "johnrich85/teamwork"

Configuration

require "vendor/autoload.php";

use GuzzleHttp\Client as Guzzle;
use Johnrich85\Teamwork\Client;
use Johnrich85\Teamwork\Factory as Teamwork;

$client     = new Client(new Guzzle, 'YourSecretKey', 'YourTeamworkUrl');
$teamwork   = new Teamwork($client);

You are ready to go now!