Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jeffreyhyer/bamboohr
- Owner: JeffreyHyer
- License: mit
- Created: 2017-09-21T21:11:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-02T18:44:36.000Z (over 3 years ago)
- Last Synced: 2024-10-11T14:47:21.411Z (26 days ago)
- Topics: api-client, bamboohr, bamboohr-api, php, php-sdk, php7
- Language: PHP
- Homepage: https://jeffreyhyer.github.io/bamboohr/
- Size: 51.8 KB
- Stars: 10
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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();
```