Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeffreyhyer/bamboohr

PHP SDK for the BambooHR API
https://github.com/jeffreyhyer/bamboohr

api-client bamboohr bamboohr-api php php-sdk php7

Last synced: 10 days ago
JSON representation

PHP SDK for the BambooHR API

Awesome Lists containing this project

README

        

# BambooHR PHP SDK

This repository contains a PHP SDK for use with the
[BambooHR](https://bamboohr.com/) API.

If you're looking to use this package inside a [Laravel](https://laravel.com/) application
you may want to check out this package instead: [jeffreyhyer/bamboohr-laravel](https://github.com/jeffreyhyer/bamboohr-laravel).
It wraps this package in a Service Provider and provides access via a Facade so the API is the
same but you'll write less code and get the same results :+1:

**DISCLAIMER:** This is **NOT** an official SDK, it is not affiliated with nor
endorsed by BambooHR in any way.

## Installation

> __NOTE__: This package currently requires PHP >= 7.0.0

#### Via Composer

```shell
$ composer require jeffreyhyer/bamboohr
```

Or add the following to your `composer.json` file:
```json
{
"require": {
"jeffreyhyer/bamboohr": "~1.0.7"
}
}
```

From within the same directory as your `composer.json` file execute:

```shell
$ composer install
```

In your PHP file (if you're not using a fancy framework that handles autoloading
for you):

```php
employees->directory();
```