thatsup/thatsup-php

There is no license information available for the latest version (dev-master) of this package.

dev-master 2021-02-18 09:20 UTC

This package is auto-updated.

Last update: 2024-09-18 16:53:40 UTC


README

A PHP wrapper for the Thatsup API.

Installation

Install the library using Composer. Please read the Composer Documentation if you are unfamiliar with Composer or dependency managers in general.

"require": {
    "thatsup/thatsup-php": "~1.0"
}

Example usage

Create a Thatsup instance and get place by id.

$thatsup = new Thatsup\Thatsup($apiKey);
$place = $thatsup->get('/place', [ 'id' => $placeId ])->data();