biila-go / laravel-api-wrapper
Provides Biila Go API wrapper for Laravel
v0.1
2021-05-12 14:44 UTC
Requires
- php: >=7.4
- guzzlehttp/guzzle: ^6.5.5 || ^7.0.1
- illuminate/http: ^7.0 || ^8.0
- illuminate/support: ^7.0 || ^8.0
Requires (Dev)
- mockery/mockery: ^1.3
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-03-14 16:39:49 UTC
README
This package provides a streamlined access to the Biila Go Partner API within your Laravel project.
Installation
Run the following command in the root folder of your Laravel project.
composer require biila-go/laravel-api-wrapper
Config values
BIILA_GO_API_TOKEN (required)
Token that grants access to the API.
BIILA_GO_API_IDENTITY (optional)
An optional email address that sets the user for the session. If not given, will default to the owner user of the api token.
Examples
Get reservation index
use BiilaGo\LaravelApiWrapper\Facades\BiilaGoApi; $reservations = BiilaGoApi::getReservations()->json(); // OR $reservations = BiilaGoApi::get('reservations')->json();
Get a single reservation
use BiilaGo\LaravelApiWrapper\Facades\BiilaGoApi; $reservation = BiilaGoApi::getReservation('R-1')->json(); // OR $reservation = BiilaGoApi::get('reservations/R-1')->json();
You can find information about the endpoints here.