thatsup / thatsup-php
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
pkg:composer/thatsup/thatsup-php
Requires
- guzzlehttp/guzzle: ^7.2
- psr/http-message: ^1.0
This package is auto-updated.
Last update: 2025-09-18 18:53:53 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();