This is a Object Oriented wrapper for the Unbounce API, written with PHP. The full Unbounce API documentation can be found here.
To see full documentation visit the oficial documentation
- PHP >= 8.1
- A PSR-17 implementation
- A PSR-18 implementation
This package is decoupled from any HTTP messaging client with help by HTTPlug. For this reason you need to install a PSR-17 and PSR-18 implementation packages. Example: composer require symfony/http-client nyholm/psr7
.
Require the package with composer:
composer require adrosoftware/unbounce-api-php-sdk
Create an instance on your codebase as follows and then you will be good to start interacting with the Circle API.
<?php
declare(strict_types=1);
use AdroSoftware\UnbounceSdk\Unbounce;
$unbounce = Unbounce::make('5up3r53cr3770k3n');
// Interact with the API.
$accounts = $unbounce->accounts()->all();
This package is licensed under the MIT License - see the LICENSE file for details
This library is maintained by:
See all the contributors here