PHPackages                             givey/givey - 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. givey/givey

ActiveLibrary[API Development](/categories/api)

givey/givey
===========

PHP library for https://api.givey.com

v0.2(11y ago)219PHPPHP &gt;=5.3.0

Since Mar 11Pushed 11y ago5 watchersCompare

[ Source](https://github.com/givey/givey-php)[ Packagist](https://packagist.org/packages/givey/givey)[ Docs](https://github.com/givey/givey-php)[ RSS](/packages/givey-givey/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

Givey PHP SDK
=============

[](#givey-php-sdk)

This is a preview release so please use at your own risk and report any issues you may experience. Contact [Givey Support](https://www.givey.com/support) if you have any questions.

[![Build Status](https://camo.githubusercontent.com/2be6cd1ace3dabb1573abcf23a48569ceee4d972ba1de8cb2142566c202026aa/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f67697665792f67697665792d7068702f6d61737465722e737667)](https://camo.githubusercontent.com/2be6cd1ace3dabb1573abcf23a48569ceee4d972ba1de8cb2142566c202026aa/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f67697665792f67697665792d7068702f6d61737465722e737667)[![Downloads](https://camo.githubusercontent.com/96c1e6ebdeec1f5c8a4945fcc6421e4369e4593207263490696cd47847760fde/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f67697665792f67697665792e737667)](https://camo.githubusercontent.com/96c1e6ebdeec1f5c8a4945fcc6421e4369e4593207263490696cd47847760fde/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f67697665792f67697665792e737667)[![Version](https://camo.githubusercontent.com/387a235c1578f0ad301dc8ccaca9497720deb1bdd2c87515fffd853984c284fb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f67697665792f67697665792e737667)](https://camo.githubusercontent.com/387a235c1578f0ad301dc8ccaca9497720deb1bdd2c87515fffd853984c284fb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f67697665792f67697665792e737667)[![Licence](https://camo.githubusercontent.com/c8966f25d8600c816d669b709e935d01c4e5295361dc5334e005dcae7e34dd9b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f67697665792f67697665792e737667)](https://camo.githubusercontent.com/c8966f25d8600c816d669b709e935d01c4e5295361dc5334e005dcae7e34dd9b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f67697665792f67697665792e737667)

Usage
-----

[](#usage)

### Install

[](#install)

```
{
    "require": {
        "givey/givey" : "*"
    }
}
```

### Setup Resource and Adapter

[](#setup-resource-and-adapter)

```
use Givey\Adapter\Buzz;
use Givey\Resource;

Resource::setAdapter(new Buzz($token));
```

### Users

[](#users)

```
use Givey\User;

User::retrieve('scott'); // Givey\Entity\User
User::all(array('business_id' => 100); // array(Givey\Entity\User, Givey\Entity\User)
```

### Businesses

[](#businesses)

```
use Givey\Business;

$business = Business::retrieve('giveybiz'); // Givey\Entity\Business
$business->employees(); // array(Givey\Entity\User, Givey\Entity\User)
```

### Charities

[](#charities)

```
use Givey\Charity;

Charity::retrieve('dogstrust'); // Givey\Entity\Charity
Charity::all(array('business_id' => 100); // array(Givey\Entity\Charity, Givey\Entity\Charity)
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.1% 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 ~0 days

Total

2

Last Release

4085d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/68361?v=4)[Scott Robertson](/maintainers/scottrobertson)[@scottrobertson](https://github.com/scottrobertson)

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

---

Top Contributors

[![scottrobertson](https://avatars.githubusercontent.com/u/68361?v=4)](https://github.com/scottrobertson "scottrobertson (34 commits)")[![marcqualie](https://avatars.githubusercontent.com/u/101022?v=4)](https://github.com/marcqualie "marcqualie (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[gorkalaucirica/hipchat-v2-api-client

Hipchat v2 API client

80223.4k6](/packages/gorkalaucirica-hipchat-v2-api-client)[matthiasnoback/microsoft-translator

Library for making calls to the Microsoft Translator V2 API

39234.2k3](/packages/matthiasnoback-microsoft-translator)[tamara-solution/php-sdk

Tamara PHP Client Library

10259.4k1](/packages/tamara-solution-php-sdk)[webit/w-firma-api

wFirma.pl API

1820.2k](/packages/webit-w-firma-api)[armetiz/airtable-php

Manipulate Airtable API using PHP

209.2k](/packages/armetiz-airtable-php)

PHPackages © 2026

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