netki / netki-partner-client
This is a PHP implementation of the Netki Partner API Client.
0.0.4
2016-07-29 19:08 UTC
Requires
- php: >=5.4.0
- rmccue/requests: v1.6.1
Requires (Dev)
- internations/http-mock: 0.7.0
- phpunit/phpunit: 4.8.16
This package is not auto-updated.
Last update: 2025-03-23 09:31:40 UTC
README
This is the Netki Partner library written in PHP. It allows you to use the Netki Partner API to CRUD all of your partner data:
- Wallet Names
- Domains
- Partners
Requirements
PHP 5.4 and later.
Dependencies
If you manually install, ensure you resolve the following dependencies
Composer
composer require netki/netki-partner-client
Simply use autoload to avail the client to your project.
require_once('vendor/autoload.php');
Manual Installation
You can clone this repo if you prefer not to use Composer. Simply include the init.php
in your project.
require_once('/path/to/netki/php-partner-client/init.php')
Documentation
Detailed API documentation can be found at Netki's Apiary.
Example
See example/example.php
for detailed usage