PHPackages                             itm2018/basecamp-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. itm2018/basecamp-api

ActiveLibrary[API Development](/categories/api)

itm2018/basecamp-api
====================

PHP wrapper for new Basecamp API

1.0.2(7y ago)132MITPHPPHP &gt;=5.4.0

Since Sep 25Pushed 7y ago1 watchersCompare

[ Source](https://github.com/itm2018/basecamp-api)[ Packagist](https://packagist.org/packages/itm2018/basecamp-api)[ RSS](/packages/itm2018-basecamp-api/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (1)Versions (4)Used By (0)

A PHP Wrapper for use with the [new Basecamp API](https://github.com/basecamp/bcx-api).
=======================================================================================

[](#a-php-wrapper-for-use-with-the-new-basecamp-api)

Simple PHP library to communicate with Basecamp. Works only with new Basecamp.

This library use HTTP caching ETag according [this recommendation](https://github.com/basecamp/bcx-api#use-http-caching).

TODO: [Pagination](https://github.com/basecamp/bcx-api#pagination).

Installation
------------

[](#installation)

Install Composer

```
$ curl -sS https://getcomposer.org/installer | php
$ sudo mv composer.phar /usr/local/bin/composer

```

Add the following to your require block in composer.json config.

```
"itm2018/basecamp-api": "dev-master"

```

Include Composer's autoloader:

```
require_once dirname(__DIR__).'/vendor/autoload.php';
```

API Usage
---------

[](#api-usage)

Get client

```
$client = new \Basecamp\Client([
    'accountId' => '', // Basecamp account ID
    'appName' => '', // Application name (used as User-Agent header)

    // OAuth token
    'token' => '',
    // or
    'login' => '', // 37Signal's account login
    'password' => '', // 37Signal's account password
]);
```

List of all active projects

```
$projects = $client->projects()->active();
```

Create new project

```
$newProject = $client->projects()->create(
    [
        'name' => 'Name of project',
        'description' => 'Some description',
    ]
);
```

Update existing project

```
$updateProject = $client->projects()->update(
    $projectId,
    [
        'name' => 'New name of project',
        'description' => 'Some description',
    ]
);
```

Contributing
------------

[](#contributing)

Welcome :)

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 77.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~9 days

Total

2

Last Release

2914d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b9fa47e3258fd96b4f4fd8a166cc041379361f07b469b8da6536ac54ccba6aae?d=identicon)[itm2018](/maintainers/itm2018)

---

Top Contributors

[![itm2018](https://avatars.githubusercontent.com/u/1841940?v=4)](https://github.com/itm2018 "itm2018 (7 commits)")[![blamh](https://avatars.githubusercontent.com/u/114339?v=4)](https://github.com/blamh "blamh (1 commits)")[![gte451f](https://avatars.githubusercontent.com/u/2897569?v=4)](https://github.com/gte451f "gte451f (1 commits)")

---

Tags

phpapibasecamp37signals

### Embed Badge

![Health badge](/badges/itm2018-basecamp-api/health.svg)

```
[![Health](https://phpackages.com/badges/itm2018-basecamp-api/health.svg)](https://phpackages.com/packages/itm2018-basecamp-api)
```

###  Alternatives

[jstolpe/instagram-graph-api-php-sdk

Instagram Graph API PHP SDK

13998.4k2](/packages/jstolpe-instagram-graph-api-php-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
