1. Go to this page and download the library: Download enhavo/cleverreach 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/ */
enhavo / cleverreach example snippets
use Enhavo\Component\CleverReach\ApiManager;
use Enhavo\Component\CleverReach\Http\SymfonyAdapter;
$adapter = new SymfonyAdapter();
// Authorize your app by credentials
$adapter->authorize('<CLIENT_ID>', '<CLIENT_SECRET>');
// Create the API manager
$apiManager = new ApiManager($adapter);