johnrich85/teamwork

PHP wrapper for the Teamwork project management API

Installs: 738

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 47

pkg:composer/johnrich85/teamwork

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

This package is auto-updated.

Last update: 2025-12-10 14:43:09 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!