ibon-azkoitia/laravel-clickup

Laravel ClickUp API Wrapper

1.0.0 2025-02-17 12:53 UTC

This package is auto-updated.

Last update: 2025-06-12 11:58:41 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

ClickUp API wrapper for Laravel

Installation

You can install the package via composer:

composer require ibon-azkoitia/laravel-clickup

Configuration

You can publish the config file with:

php artisan vendor:publish --tag="clickup-config"

Testing

Local Testing Setup

To run the tests locally, you'll need to:

  1. Copy .env.testing.example to .env.testing:
cp .env.testing.example .env.testing
  1. Update .env.testing with your ClickUp test credentials:

    • CLICKUP_API_TOKEN: Your ClickUp API token
    • CLICKUP_TEST_LIST_ID: ID of a list in your ClickUp workspace
    • CLICKUP_TEST_TEAM_ID: Your ClickUp team ID
    • CLICKUP_TEST_TASK_ID: ID of a task in your test list
    • CLICKUP_TEST_TASK_ID_2: ID of another task in your test list
    • CLICKUP_TEST_TEMPLATE_ID: ID of a template in your test list
  2. Run the tests:

composer test

Important: The test suite interacts with the actual ClickUp API. Please use a development workspace for testing to avoid affecting production data.

Contributing & Pull Requests

When submitting a pull request:

  1. Ensure all tests pass locally using your own ClickUp test credentials
  2. The GitHub Actions workflow will run:
    • Code style checks
    • Static analysis
    • Basic syntax validation
  3. Full API integration tests will only run in the maintainer's environment to protect the test workspace

Note: For security reasons, integration tests that interact with the ClickUp API will only run for repository maintainers. Contributors should thoroughly test their changes locally using their own ClickUp workspace before submitting PRs.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see License File for more information.