johnrich85 / teamwork
PHP wrapper for the Teamwork project management API
v3.0.1
2025-01-10 12:30 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^7.2
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.5
Suggests
- illuminate/support: Required for Laravel support
README
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!