airlst/clickup-sdk-php

There is no license information available for the latest version (0.0.1) of this package.

PHP SDK for ClickUp API v2

0.0.1 2025-07-23 11:13 UTC

This package is auto-updated.

Last update: 2025-07-23 11:14:01 UTC


README

This package provides a PHP SDK for the ClickUp API V2, allowing developers to easily integrate ClickUp's services into their applications. It is built using ClickUp's official OpenAPI specifications and is built with the help of crescat-io/saloon-sdk-generator tool.

Installation

composer require airlst/clickup-sdk-php

Usage

use ClickUp\V2\ClickUpSDK;

$connector = new ClickUpSDK(
    config('services.clickup.customer'),
    config('services.clickup.username'),
    config('services.clickup.password'),
);

$response = $connector->clients()->fetchAllTenantsFormerlyClients();

Contributing

If you want to contribute to this SDK, you can generate the SDK from the fresh OpenAPI specification using the following command:

php application build

Links