PHPackages                             libcast/highrise - 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. libcast/highrise

ActiveLibrary[API Development](/categories/api)

libcast/highrise
================

Highrise API client

v1.0.6(11y ago)99.9k↓33.3%8BSD-4-ClausePHP

Since Mar 5Pushed 9y ago5 watchersCompare

[ Source](https://github.com/libcast/Highrise-PHP-Api)[ Packagist](https://packagist.org/packages/libcast/highrise)[ RSS](/packages/libcast-highrise/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)DependenciesVersions (5)Used By (0)

libcast/highrise
================

[](#libcasthighrise)

This library is a full rewrite of [Highrise-PHP-Api](https://github.com/ignaciovazquez/Highrise-PHP-Api) aiming to improve usability and stick with modern PHP practices.

New features include:

- PHP 5.3 namespaces
- Composer support
- Ability to list global subject fields
- Ability to add custom fields to a Person
- Ability of deleting a email address of a Person

Existing features in original library:

- People
- Tasks
- Notes
- Emails
- Tags
- Users

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

[](#installation)

The recommended way to install `libcast/highrise` is to use [Composer](https://getcomposer.org):

```
$ composer require libcast/highrise
```

Usage
-----

[](#usage)

### People

[](#people)

Create a new person and set his address:

```
use Highrise\Resources\HighrisePerson;

$person = new HighrisePerson($highrise);
$person->setFirstName("John");
$person->setLastName("Doe");
$person->addEmailAddress("johndoe@gmail.com");

$address = new HighriseAddress();
$address->setAddress("165 Test St.");
$address->setCity("Glasgow");
$address->setCountry("Scotland");
$address->setZip("GL1");
$person->addAddress($address);

$person->save();
```

Find people by search term:

```
$people = $highrise->findPeopleBySearchTerm("John");
foreach($people as $p) {
    print $person->getFirstName() . "\n";
}
```

### Notes

[](#notes)

Print all notes:

```
foreach($highrise->findAllPeople() as $person) {
    print_r($person->getNotes());
}
```

Create a new note:

```
$note = new HighriseNote($highrise);
$note->setSubjectType("Party");
$note->setSubjectId($person->getId());
$note->setBody("Test");
$note->save();
```

### Tags

[](#tags)

Add tags:

```
$people = $highrise->findPeopleByTitle("CEO");
foreach($people as $person) {
    $person->addTag("CEO");
    $person->save();
}
```php

Remove Tags:

```php
$people = $highrise->findPeopleByTitle("Ex-CEO");
foreach($people as $person) {
    unset($person->tags['CEO']);
    $person->save();
}
```

Find all tags:

```
$all_tags = $highrise->findAllTags();
print_r($all_tags);
```

### Tasks

[](#tasks)

Create task:

```
$task = new HighriseTask($highrise);
$task->setBody("Task Body");
$task->setPublic(false);
$task->setFrame("Tomorrow");
$task->save();
```

Assign all upcoming tasks:

```
$users = $highrise->findAllUsers();
$user = $users[0]; // just select the first user

foreach($highrise->findUpcomingTasks() as $task) {
    $task->assignToUser($user);
    $task->save();
}
```php

Find all assigned tasks:

```php
$assigned_tasks = $highrise->findAssignedTasks();
print_r($assigned_tasks);
```

### Users

[](#users)

Find all users:

```
$users = $highrise->findAllUsers();
print_r($users);
```

Find current user:

```
$me = $highrise->findMe();
```

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~180 days

Total

4

Last Release

4282d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0a7bb40b10c867ab8d3855ea0614d59a1751cd8d5544266e3a84fd433b2be651?d=identicon)[libcast](/maintainers/libcast)

---

Top Contributors

[![ignaciovazquez](https://avatars.githubusercontent.com/u/679016?v=4)](https://github.com/ignaciovazquez "ignaciovazquez (28 commits)")[![KevenLibcast](https://avatars.githubusercontent.com/u/5191235?v=4)](https://github.com/KevenLibcast "KevenLibcast (16 commits)")[![whobutsb](https://avatars.githubusercontent.com/u/868190?v=4)](https://github.com/whobutsb "whobutsb (5 commits)")[![libcastadmin](https://avatars.githubusercontent.com/u/605765?v=4)](https://github.com/libcastadmin "libcastadmin (3 commits)")[![kgodet](https://avatars.githubusercontent.com/u/8274859?v=4)](https://github.com/kgodet "kgodet (2 commits)")[![brycied00d](https://avatars.githubusercontent.com/u/435838?v=4)](https://github.com/brycied00d "brycied00d (2 commits)")[![hkdobrev](https://avatars.githubusercontent.com/u/506129?v=4)](https://github.com/hkdobrev "hkdobrev (1 commits)")[![Elijen](https://avatars.githubusercontent.com/u/1304054?v=4)](https://github.com/Elijen "Elijen (1 commits)")[![manavo](https://avatars.githubusercontent.com/u/259487?v=4)](https://github.com/manavo "manavo (1 commits)")

### Embed Badge

![Health badge](/badges/libcast-highrise/health.svg)

```
[![Health](https://phpackages.com/badges/libcast-highrise/health.svg)](https://phpackages.com/packages/libcast-highrise)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

90821.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

74513.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

265103.1M454](/packages/google-gax)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

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