iqu-group / has-offers-api-php-client
Installs: 749
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 1
pkg:composer/iqu-group/has-offers-api-php-client
Requires
- guzzlehttp/guzzle: ^6.2
This package is not auto-updated.
Last update: 2025-10-26 02:42:17 UTC
README
This is a PHP client to connect to the HasOffers API.
Usage
$client = new \GuzzleHttp\Client(); $affiliateController = new \Iqu\HasOffersAPIClient\Controllers\AffiliateController($networkToken, $networkId, $client); try { $response = $affiliateController->findAll(); var_dump($response); } catch (\Exception $e) { echo($e->getMessage()); }