PHP code example of wakup / monge-php-api

1. Go to this page and download the library: Download wakup/monge-php-api 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/ */

    

wakup / monge-php-api example snippets


use Monolog\Logger;
use Monolog\Handler\StreamHandler;

# Select path for log file
$logDir = getcwd().'/my_app.log';

# Create monolog logger
$logger = new Logger('HTTP');
$logger->pushHandler(new StreamHandler($logDir, Logger::ERROR));

# Instance client
$wakupClient = new \Wakup\Client($logger);

$pagination = $wakupClient->getPaginatedAttributes(0, 100);
$attributes = $pagination->getAttributes();

$pagination = $wakupClient->getPaginatedCategories(0, 100);
$categories = $pagination->getCategories();