{"id":15025084,"url":"https://github.com/zschuessler/dovetail","last_synced_at":"2026-02-06T02:32:43.222Z","repository":{"id":57058411,"uuid":"119074692","full_name":"zschuessler/dovetail","owner":"zschuessler","description":"A Laravel 5 package for Teamwork.com's API","archived":false,"fork":false,"pushed_at":"2018-02-24T15:40:20.000Z","size":212,"stargazers_count":5,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-23T13:51:40.042Z","etag":null,"topics":["laravel","laravel-5-package","laravel5","php","teamwork","teamwork-api"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zschuessler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-01-26T16:22:44.000Z","updated_at":"2023-09-08T15:35:24.000Z","dependencies_parsed_at":"2022-08-24T14:53:19.076Z","dependency_job_id":null,"html_url":"https://github.com/zschuessler/dovetail","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/zschuessler/dovetail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zschuessler%2Fdovetail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zschuessler%2Fdovetail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zschuessler%2Fdovetail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zschuessler%2Fdovetail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zschuessler","download_url":"https://codeload.github.com/zschuessler/dovetail/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zschuessler%2Fdovetail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29145861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T01:13:33.096Z","status":"online","status_checked_at":"2026-02-06T02:00:08.092Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","laravel-5-package","laravel5","php","teamwork","teamwork-api"],"created_at":"2024-09-24T20:01:29.902Z","updated_at":"2026-02-06T02:32:43.201Z","avatar_url":"https://github.com/zschuessler.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A Teamwork.com API for Laravel 5\n\nAccess your Teamwork.com data in an easy, fluent, API for Laravel 5.\n\nLook at all the fun you can have!\n\n![code sample](https://squarebit.io/storage/products/16/Rwd9Kh2XZcYwuqqnyn8ueY7fPsxNwljMscfCYL3b.png)\n\nStill not sure? Check out the \n[API cheat sheet](https://squarebit.io/zschuessler/dovetail/documentation/getting-started/api-request-cheat-sheet)\nfor a look at how you'll interact with the API.\n\n# Quickstart Guide\n\n**Install**\n\n```\ncomposer require squarebit/dovetail\n```\n\nIf you aren't on Laraqve 5.5+, you must manually add the service provider to your `app/config.php` file:\n\n```php\n/**\n * Custom Service Providers\n */\nSquareBit\\Dovetail\\ServiceProvider::class,\n```\n\n**Configure API Settings**\n\n```php\nphp artisan vendor:publish --provider=\"SquareBit\\Dovetail\\ServiceProvider\"\n```\n\nYou can  now set your default API key and Teamwork.com domain in `config/dovetail.php`.\n\nNeed a key? See the Teamwork.com docs: [Getting your API Key](https://developer.teamwork.com/introduction#so_how_do_you_get)\n\n**Usage**\n\nLet's get your latest account activity, shall we?\n\n```php\n\u003c?php\n$dovetail = new \\SquareBit\\Dovetail\\Dovetail;\n    \n$allActivity = $dovetail-\u003eactivity()-\u003eall();\n```\n\nWant to change who you are authenticated as? That's easy too. You can either set the config programmatically with methods,\nor pass in an ApiClient object:\n\n```php\n\u003c?php\n\n// Set all at once!\n$dovetail = new \\SquareBit\\Dovetail\\Dovetail(\n    new \\SquareBit\\Dovetail\\Api\\Client('my-api-key', 'https://myDomain.teamwork.com')\n);\n$allActivity = $dovetail-\u003eactivity()-\u003eall();\n\n// Or with a method...\n$dovetail = new \\SquareBit\\Dovetail\\Dovetail;\n$dovetail-\u003eapiClient-\u003esetApiKey('my-new-key');\n$dovetail-\u003eapiClient-\u003esetApiUrl('https://myDomain.teamwork.com');\n\n$allActivity = $dovetail-\u003eactivity()-\u003eall();\n\n```\n\n**Full API Cheat Sheet**\n\nThirsty for more? Check out the full API cheat sheet:\n\nhttps://squarebit.io/zschuessler/dovetail/documentation/getting-started/api-request-cheat-sheet\n\nWant to see the official Quickstart Guide? It's here:\n\nhttps://squarebit.io/zschuessler/dovetail/documentation/getting-started/quickstart-guide\n\n# Roadmap\n\nThe following endpoints will be added before 02/28/2018:\n\n* boards\n* categories\n* calendar events\n* files\n* time tracking\n\nFor business users, full webhook support will be available 03/01/2018. You'll get full ability to consume and respond\nto Teamwork.com events as they happen - woohoo! You can get an unlimited usage license on the \n[SquareBit.io Dovetail page.](https://squarebit.io/zschuessler/dovetail)\n\n# Unit Tests\n\nThis package has over 75+ unit tests and growing. If interested please see the business license on SquareBit.io.\n\n# License\n\nIf you are a business or intending on commercial use, please pay for a license: \n[Dovetail on SquareBit.io](https://squarebit.io/zschuessler/dovetail).\n\nIf you intend on using this repository without commercial use, the code is licensed under\n[Creative Commons Attribution NonCommercial \\(CC-BY-NC\\)](https://tldrlegal.com/license/creative-commons-attribution-noncommercial-\\(cc-nc\\)).\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzschuessler%2Fdovetail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzschuessler%2Fdovetail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzschuessler%2Fdovetail/lists"}