This repository contains a PHP SDK for use with the BambooHR API.
If you're looking to use this package inside a Laravel application you may want to check out this package instead: 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 👍
DISCLAIMER: This is NOT an official SDK, it is not affiliated with nor endorsed by BambooHR in any way.
NOTE: This package currently requires PHP >= 7.0.0
$ composer require jeffreyhyer/bamboohr
Or add the following to your composer.json
file:
{
"require": {
"jeffreyhyer/bamboohr": "~1.0.7"
}
}
From within the same directory as your composer.json
file execute:
$ composer install
In your PHP file (if you're not using a fancy framework that handles autoloading for you):
<?php
require './vendor/autoload.php';
From within your PHP application you can access the BambooHR API with just a couple lines:
<?php
require './vendor/autoload.php';
use BambooHR\BambooHR;
$api_token = "[BAMBOOHR API TOKEN]";
$company = "[BAMBOO COMPANY NAME]";
$bamboo = new BambooHR($company, $api_token);
// Get the employee directory
$employees = $bamboo->employees->directory();