PHP code example of wuwx / infoplus-sdk-php
1. Go to this page and download the library: Download wuwx/infoplus-sdk-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wuwx / infoplus-sdk-php example snippets
use Wuwx\InfoPlus\Application;
$app = new Application([
"base_uri" => $_ENV["INFOPLUS_BASE_URI"],
"client_id" => $_ENV["INFOPLUS_CLIENT_ID"],
"client_secret" => $_ENV["INFOPLUS_CLIENT_SECRET"],
]);
$app["process"]->find(6807);
shell
$ composer